Updated openapi yml
This commit is contained in:
parent
b6adfee731
commit
f2536d3e92
1 changed files with 16 additions and 0 deletions
|
|
@ -194,6 +194,22 @@ paths:
|
|||
$ref: '#/components/responses/ServerError'
|
||||
tags:
|
||||
- users
|
||||
/users/delete:
|
||||
delete:
|
||||
summary: Permanently delete a user's account
|
||||
security:
|
||||
- BearerAuth: []
|
||||
responses:
|
||||
'200':
|
||||
description: OK
|
||||
'400':
|
||||
$ref: '#/components/responses/BadRequest'
|
||||
'401':
|
||||
$ref: '#/components/responses/Unauthorized'
|
||||
'500':
|
||||
$ref: '#/components/responses/ServerError'
|
||||
tags:
|
||||
- users
|
||||
/users/reset:
|
||||
post:
|
||||
summary: Get a link for the user to reset their password
|
||||
|
|
|
|||
Reference in a new issue