Skip to content

Commit

Permalink
change panda to bearer auth
Browse files Browse the repository at this point in the history
  • Loading branch information
dmetzner committed Apr 11, 2024
1 parent 4440203 commit a9023d7
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions catroweb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ paths:
/authentication:
get:
security:
- PandaAuth: []
- BearerAuth: []
tags:
- "Authentication"
summary: "Check token"
Expand All @@ -65,7 +65,7 @@ paths:

post:
security:
- PandaAuth: []
- BearerAuth: []
tags:
- "Authentication"
summary: "Login"
Expand Down Expand Up @@ -94,7 +94,7 @@ paths:

delete:
security:
- PandaAuth: []
- BearerAuth: []
tags:
- "Authentication"
summary: "Expires refresh token"
Expand All @@ -116,7 +116,7 @@ paths:
/authentication/refresh:
post:
security:
- PandaAuth: []
- BearerAuth: []
tags:
- "Authentication"
summary: 'Refresh token'
Expand Down Expand Up @@ -254,7 +254,7 @@ paths:

get:
security:
- PandaAuth: []
- BearerAuth: []
tags:
- "User"
summary: "Get your private user data"
Expand Down Expand Up @@ -340,7 +340,7 @@ paths:
parameters:
- $ref: '#/components/parameters/Locale'
security:
- PandaAuth: []
- BearerAuth: []
tags:
- "User"
summary: "Update User"
Expand Down Expand Up @@ -382,7 +382,7 @@ paths:

delete:
security:
- PandaAuth: []
- BearerAuth: []
tags:
- "User"
summary: "Delete user account"
Expand Down Expand Up @@ -563,7 +563,7 @@ paths:

post:
security:
- PandaAuth: []
- BearerAuth: []
tags:
- "Projects"
summary: "Upload a catrobat project"
Expand Down Expand Up @@ -696,7 +696,7 @@ paths:
/projects/user:
get:
security:
- PandaAuth: []
- BearerAuth: []
tags:
- "Projects"
summary: "Get the projects of the logged in user"
Expand Down Expand Up @@ -832,7 +832,7 @@ paths:
- $ref: '#/components/parameters/Uuid'
- $ref: '#/components/parameters/Locale'
security:
- PandaAuth: []
- BearerAuth: []
tags:
- "Projects"
summary: "Update details of a project"
Expand Down Expand Up @@ -888,7 +888,7 @@ paths:
$ref: '#/components/headers/Content-Language'
delete:
security:
- PandaAuth: []
- BearerAuth: []
tags:
- Projects
summary: 'Delete a project'
Expand Down Expand Up @@ -940,7 +940,7 @@ paths:
'/project/{id}/report':
post:
security:
- PandaAuth: []
- BearerAuth: []
tags:
- Projects
summary: 'Report a project -- StatusCode: 501 - Not yet implemented'
Expand Down Expand Up @@ -1005,7 +1005,7 @@ paths:
- $ref: '#/components/parameters/Locale'
get:
security:
- PandaAuth: []
- BearerAuth: []
tags:
- "Notifications"
summary: 'Get user notifications -- StatusCode: 501 - Not yet implemented'
Expand Down Expand Up @@ -1036,7 +1036,7 @@ paths:
- $ref: '#/components/parameters/Locale'
put:
security:
- PandaAuth: []
- BearerAuth: []
tags:
- "Notifications"
summary: 'Mark specified notification as read'
Expand All @@ -1053,7 +1053,7 @@ paths:
/notifications/read:
put:
security:
- PandaAuth: []
- BearerAuth: []
tags:
- "Notifications"
summary: 'Mark all notifications as read'
Expand All @@ -1070,7 +1070,7 @@ paths:
/notifications/count:
get:
security:
- PandaAuth: []
- BearerAuth: []
tags:
- "Notifications"
summary: 'Count the number of unseen notifications'
Expand Down

0 comments on commit a9023d7

Please sign in to comment.