Skip to content

Commit

Permalink
remove post/put/delete events
Browse files Browse the repository at this point in the history
  • Loading branch information
KellyStathis committed Aug 8, 2022
1 parent e85a6fa commit ed50f4b
Showing 1 changed file with 0 additions and 56 deletions.
56 changes: 0 additions & 56 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -684,22 +684,6 @@ paths:
$ref: '#/components/schemas/Event'
tags:
- events
post:
tags:
- events
summary: Add a new event.
security:
- BasicAuth: []
- bearerAuth: []
requestBody:
required: true
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/Event'
responses:
'201':
description: Created
'/events/{id}':
get:
parameters:
Expand All @@ -720,46 +704,6 @@ paths:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/Event'
put:
parameters:
- name: id
in: path
description: Event
required: true
schema:
type: string
tags:
- events
summary: Update an event.
security:
- BasicAuth: []
- bearerAuth: []
requestBody:
required: true
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/Event'
responses:
'200':
description: OK
delete:
parameters:
- name: id
in: path
description: Event
required: true
schema:
type: string
tags:
- events
summary: Delete an event.
security:
- BasicAuth: []
- bearerAuth: []
responses:
'204':
description: No content
/heartbeat:
get:
tags:
Expand Down

0 comments on commit ed50f4b

Please sign in to comment.