Skip to content

Commit

Permalink
Auth endpoints only require basic auth (#21)
Browse files Browse the repository at this point in the history
* Auth endpoints only require basic auth

* Fixes

Co-authored-by: Aaron DeLory <rexios@rexios.dev>
  • Loading branch information
Rexios80 and Rexios80 authored Jul 16, 2021
1 parent c2ca8bc commit e5d757f
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,8 @@ paths:
**WARNING: Session Limit:** Each authentication with login credentials counts as a separate session, out of which you have a limited amount. Make sure to save and reuse the `auth` cookie whenever you can, and avoid sending the Authorization header unless strictly neccesary. While the exact number of simultaneous open sessions is secret, expect to **very fast** run into the rate-limit and be temporarily blocked from making new sessions until the old ones expire.
parameters: []
security:
- apiKeyQuery: []
authHeader: []
- authHeader: []
- authCookie: []
/auth/twofactorauth/totp/verify:
parameters: []
post:
Expand Down Expand Up @@ -152,8 +152,7 @@ paths:
tags:
- authentication
security:
- apiKeyCookie: []
authCookie: []
- authCookie: []
parameters: []
/auth/twofactorauth/otp/verify:
parameters: []
Expand Down Expand Up @@ -189,8 +188,7 @@ paths:
tags:
- authentication
security:
- apiKeyCookie: []
authCookie: []
- authCookie: []
'/user/{userId}/delete':
parameters:
- schema:
Expand Down

0 comments on commit e5d757f

Please sign in to comment.