Feature: Google OAuth2

This commit is contained in:
Kamigen
2024-04-22 16:43:20 -04:00
parent e3d570722e
commit 5f92998663
4 changed files with 71 additions and 20 deletions

View File

@@ -6,6 +6,39 @@
"version": "1.0.0"
},
"paths": {
"/api/Google": {
"post": {
"tags": [
"Google"
],
"operationId": "CreateGoogleUser",
"requestBody": {
"x-name": "command",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/CreateGoogleUserCommand"
}
}
},
"required": true,
"x-position": 1
},
"responses": {
"200": {
"description": "",
"content": {
"application/json": {
"schema": {
"type": "string",
"format": "guid"
}
}
}
}
}
}
},
"/api/JoinUs": {
"get": {
"tags": [
@@ -559,6 +592,15 @@
},
"components": {
"schemas": {
"CreateGoogleUserCommand": {
"type": "object",
"additionalProperties": false,
"properties": {
"accessToken": {
"type": "string"
}
}
},
"PaginatedListOfFutureCreatorListDto": {
"type": "object",
"additionalProperties": false,