fix: confirm email changes and enforce clean backend build
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
},
|
||||
"servers": [
|
||||
{
|
||||
"url": "http://localhost:5080"
|
||||
"url": "http://localhost:5081"
|
||||
}
|
||||
],
|
||||
"paths": {
|
||||
@@ -854,8 +854,15 @@
|
||||
"x-position": 1
|
||||
},
|
||||
"responses": {
|
||||
"204": {
|
||||
"description": "No Content"
|
||||
"200": {
|
||||
"description": "Success",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/SocializeApiModulesIdentityHandlersChangeEmailResponse"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"401": {
|
||||
"description": "Unauthorized"
|
||||
@@ -1017,6 +1024,53 @@
|
||||
]
|
||||
}
|
||||
},
|
||||
"/api/users/confirm-email-change": {
|
||||
"get": {
|
||||
"tags": [
|
||||
"Users",
|
||||
"Api"
|
||||
],
|
||||
"operationId": "SocializeApiModulesIdentityHandlersConfirmEmailChangeHandler",
|
||||
"parameters": [
|
||||
{
|
||||
"name": "userId",
|
||||
"in": "query",
|
||||
"required": true,
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "email",
|
||||
"in": "query",
|
||||
"required": true,
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "token",
|
||||
"in": "query",
|
||||
"required": true,
|
||||
"schema": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "Success",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/SocializeApiModulesIdentityHandlersConfirmEmailChangeResponse"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"/api/users/forgot-password": {
|
||||
"post": {
|
||||
"tags": [
|
||||
@@ -4269,6 +4323,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"SocializeApiModulesIdentityHandlersChangeEmailResponse": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"message": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"SocializeApiModulesIdentityHandlersChangeEmailRequest": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
@@ -4327,6 +4390,19 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"SocializeApiModulesIdentityHandlersConfirmEmailChangeResponse": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"message": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"SocializeApiModulesIdentityHandlersConfirmEmailChangeRequest": {
|
||||
"type": "object",
|
||||
"additionalProperties": false
|
||||
},
|
||||
"SocializeApiModulesIdentityHandlersForgotPasswordRequest": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
|
||||
Reference in New Issue
Block a user