Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions openapi/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,6 @@ paths:
/discussion/{contextType}/{contextId}/comments/{id}/comments:
$ref: 'paths/discussion@{contextType}@{contextId}@comments@{id}@comments.yaml'


/api/session:
$ref: 'paths/api@session.yaml'

Expand Down Expand Up @@ -202,9 +201,6 @@ paths:
/news/lists/folder/{id}:
$ref: 'paths/news@lists@folder@{id}.yaml'

/calendar/event/attendance/{id}:
$ref: 'paths/calendar@event@attendance@{id}.yaml'

/calendar/event/create:
$ref: 'paths/calendar@event@create.yaml'

Expand All @@ -217,6 +213,9 @@ paths:
/calendar/event/{id}/delete:
$ref: 'paths/calendar@event@{id}@delete.yaml'

/calendar/event/attendance/{id}:
$ref: 'paths/calendar@event@attendance@{id}.yaml'

/calendar/event/attendance/{id}/create:
$ref: 'paths/calendar@event@attendance@{id}@create.yaml'

Expand Down
2 changes: 1 addition & 1 deletion openapi/paths/calendar@event@attendance@{id}.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
get:
operationId: getCalendarEventAttendance
tags: [calendar, event]
tags: [calendar]
summary: Get an event's attendees
description: |
This will return a list of people that have been invited or RSVP to an an event. It will include the status of their invitation and if they have accepted the invitation.
Expand Down
2 changes: 1 addition & 1 deletion openapi/paths/calendar@event@attendance@{id}@accept.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
post:
operationId: postCalendarEventAttendanceAccept
tags: [calendar, event]
tags: [calendar]
summary: Accept event invitation
description: |
This allows a user to accept an invitation. Note that not all events will allow the user to accept an invitation. They must either have been invited, or have the ability to invite themselves.
Expand Down
2 changes: 1 addition & 1 deletion openapi/paths/calendar@event@attendance@{id}@create.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
post:
operationId: postCalendarEventAttendanceCreate
tags: [calendar, event]
tags: [calendar]
summary: Invite attendees to an event
description: |
Create invitations to the given event, for the given set of users.
Expand Down
2 changes: 1 addition & 1 deletion openapi/paths/calendar@event@attendance@{id}@decline.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
post:
operationId: postCalendarEventAttendanceDecline
tags: [calendar, event]
tags: [calendar]
summary: Decline event invitation
description: |
As the authenticated user, declines the invitation to attend the given
Expand Down
2 changes: 1 addition & 1 deletion openapi/paths/calendar@event@attendance@{id}@delete.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
post:
operationId: postCalendarEventAttendanceDelete
tags: [calendar, event]
tags: [calendar]
summary: Uninvite attendees from an event
description: |
Deletes invitations to the given event, for the given user.
Expand Down
2 changes: 1 addition & 1 deletion openapi/paths/calendar@event@create.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
post:
operationId: calendarEvent.postCreate
tags: [calendar, event]
tags: [calendar]
summary: Create a calendar event
description: |
Creates a calendar event
Expand Down
2 changes: 1 addition & 1 deletion openapi/paths/calendar@event@{id}@delete.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ parameters:
- $ref: ../components/parameters/id.yaml
post:
operationId: calendarEvent.postDelete
tags: [calendar, event]
tags: [calendar]
summary: Delete a calendar event
description: |
Deletes a calendar event
Expand Down
2 changes: 1 addition & 1 deletion openapi/paths/calendar@event@{id}@modify.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ parameters:
- $ref: ../components/parameters/id.yaml
post:
operationId: calendarEvent.postModify
tags: [calendar, event]
tags: [calendar]
summary: Modify a calendar event
description: |
Modifies a calendar event
Expand Down
2 changes: 1 addition & 1 deletion openapi/paths/calendar@event@{id}@move.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ parameters:
- $ref: ../components/parameters/id.yaml
post:
operationId: calendarEvent.postMove
tags: [calendar, event]
tags: [calendar]
summary: Move a calendar event
description: |
Moves a calendar event
Expand Down