Added endpoint in API to allow mail confirmation
This commit is contained in:
parent
4cfd461036
commit
e22d3972a7
@ -1108,8 +1108,52 @@ paths:
|
|||||||
$ref: "#/components/responses/notAuth"
|
$ref: "#/components/responses/notAuth"
|
||||||
400:
|
400:
|
||||||
$ref: "#/components/responses/error"
|
$ref: "#/components/responses/error"
|
||||||
|
|
||||||
/change_password:
|
/confirm_mail/{alias}/{token}:
|
||||||
|
get:
|
||||||
|
tags: [Benutzer]
|
||||||
|
summary: Eine Mail eines Benutzers bestätigen
|
||||||
|
parameters:
|
||||||
|
- name: alias
|
||||||
|
in: path
|
||||||
|
required: true
|
||||||
|
schema:
|
||||||
|
type: integer
|
||||||
|
example: 12
|
||||||
|
description: Die ID des Benutzers, der die Mail hinzugefügt werden soll
|
||||||
|
- name: token
|
||||||
|
in: path
|
||||||
|
required: true
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
example: "asdfkhjg7854-hjkhjf-234"
|
||||||
|
description: Der Token, der per Mail verschickt wurde, um die Mail zu bestätigen.
|
||||||
|
responses:
|
||||||
|
200:
|
||||||
|
$ref: "#/components/responses/ok"
|
||||||
|
security: []
|
||||||
|
|
||||||
|
/me/resend-token:
|
||||||
|
post:
|
||||||
|
tags: [Benutzer]
|
||||||
|
summary: Die Mail mit dem Token zur Bestätigung erneut an die Mailadresse schicken
|
||||||
|
parameters:
|
||||||
|
- name: mail
|
||||||
|
in: query
|
||||||
|
required: true
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
example: "foo@example.com"
|
||||||
|
description: Die Mail, die bestätigt werden soll.
|
||||||
|
responses:
|
||||||
|
200:
|
||||||
|
$ref: "#/components/responses/ok"
|
||||||
|
401:
|
||||||
|
$ref: "#/components/responses/notAuth"
|
||||||
|
400:
|
||||||
|
$ref: "#/components/responses/error"
|
||||||
|
|
||||||
|
/change-password:
|
||||||
post:
|
post:
|
||||||
tags: [Benutzer]
|
tags: [Benutzer]
|
||||||
summary: Das Passwort eines Nutzers anpassen
|
summary: Das Passwort eines Nutzers anpassen
|
||||||
@ -1135,7 +1179,26 @@ paths:
|
|||||||
$ref: "#/components/responses/notAuth"
|
$ref: "#/components/responses/notAuth"
|
||||||
400:
|
400:
|
||||||
$ref: "#/components/responses/error"
|
$ref: "#/components/responses/error"
|
||||||
|
|
||||||
|
/reset-password:
|
||||||
|
get:
|
||||||
|
tags: [Benutzer]
|
||||||
|
summary: Das Passwort eines Nutzers zurücksetzen
|
||||||
|
parameters:
|
||||||
|
- name: mail
|
||||||
|
required: true
|
||||||
|
in: query
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
description: Die Mail des Nutzers, dessen Passwort zurück gesetzt werden soll
|
||||||
|
example: "foo@example.com"
|
||||||
|
responses:
|
||||||
|
200:
|
||||||
|
$ref: "#/components/responses/ok"
|
||||||
|
400:
|
||||||
|
$ref: "#/components/responses/error"
|
||||||
|
security: []
|
||||||
|
|
||||||
/users/search:
|
/users/search:
|
||||||
get:
|
get:
|
||||||
tags: [Benutzer]
|
tags: [Benutzer]
|
||||||
|
Loading…
Reference in New Issue
Block a user