feat: add release digest controls
This commit is contained in:
@@ -521,6 +521,40 @@
|
||||
]
|
||||
}
|
||||
},
|
||||
"/api/developer/release-update-email-digests/force": {
|
||||
"post": {
|
||||
"tags": [
|
||||
"Release Communications",
|
||||
"Api"
|
||||
],
|
||||
"operationId": "SocializeApiModulesReleaseCommunicationsHandlersForceDeveloperReleaseUpdateDigestEmailsHandler",
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "Success",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/SocializeApiModulesReleaseCommunicationsContractsReleaseUpdateDigestSendResultDto"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"401": {
|
||||
"description": "Unauthorized"
|
||||
},
|
||||
"403": {
|
||||
"description": "Forbidden"
|
||||
}
|
||||
},
|
||||
"security": [
|
||||
{
|
||||
"JWTBearerAuth": [
|
||||
"developer"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"/api/developer/release-updates/{id}": {
|
||||
"get": {
|
||||
"tags": [
|
||||
@@ -1890,6 +1924,51 @@
|
||||
]
|
||||
}
|
||||
},
|
||||
"/api/users/preferred-language": {
|
||||
"post": {
|
||||
"tags": [
|
||||
"Users",
|
||||
"Api"
|
||||
],
|
||||
"operationId": "SocializeApiModulesIdentityHandlersChangePreferredLanguageHandler",
|
||||
"requestBody": {
|
||||
"x-name": "ChangePreferredLanguageRequest",
|
||||
"description": "",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/SocializeApiModulesIdentityHandlersChangePreferredLanguageRequest"
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": true,
|
||||
"x-position": 1
|
||||
},
|
||||
"responses": {
|
||||
"204": {
|
||||
"description": "No Content"
|
||||
},
|
||||
"400": {
|
||||
"description": "Bad Request",
|
||||
"content": {
|
||||
"application/problem+json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/FastEndpointsErrorResponse"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"401": {
|
||||
"description": "Unauthorized"
|
||||
}
|
||||
},
|
||||
"security": [
|
||||
{
|
||||
"JWTBearerAuth": []
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
"/api/users/confirm-email-change": {
|
||||
"get": {
|
||||
"tags": [
|
||||
@@ -5010,6 +5089,16 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"SocializeApiModulesReleaseCommunicationsContractsReleaseUpdateDigestSendResultDto": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"sentCount": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
}
|
||||
}
|
||||
},
|
||||
"SocializeApiModulesReleaseCommunicationsContractsReleaseUpdateUnreadSummaryDto": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
@@ -5618,6 +5707,15 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"SocializeApiModulesIdentityHandlersChangePreferredLanguageRequest": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"preferredLanguage": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"SocializeApiModulesIdentityHandlersConfirmEmailChangeResponse": {
|
||||
"type": "object",
|
||||
"additionalProperties": false,
|
||||
@@ -5714,6 +5812,9 @@
|
||||
"address": {
|
||||
"type": "string",
|
||||
"nullable": true
|
||||
},
|
||||
"preferredLanguage": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -7712,4 +7813,4 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user