From 3a9dbf42a133c3dca7106b398677ae9fcf371a5a Mon Sep 17 00:00:00 2001 From: Kamigen <46357922+Edouard127@users.noreply.github.com> Date: Sun, 28 Apr 2024 19:27:16 -0400 Subject: [PATCH] Update specification.json --- src/Web/wwwroot/api/specification.json | 42 ++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/src/Web/wwwroot/api/specification.json b/src/Web/wwwroot/api/specification.json index 5a1838c..f5515cb 100644 --- a/src/Web/wwwroot/api/specification.json +++ b/src/Web/wwwroot/api/specification.json @@ -26,6 +26,39 @@ } } }, + "/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": [ @@ -649,6 +682,15 @@ } } }, + "CreateGoogleUserCommand": { + "type": "object", + "additionalProperties": false, + "properties": { + "accessToken": { + "type": "string" + } + } + }, "PaginatedListOfFutureCreatorListDto": { "type": "object", "additionalProperties": false,