diff --git a/pkg/swagger/docs.go b/pkg/swagger/docs.go index e66b00168..9aecdd363 100644 --- a/pkg/swagger/docs.go +++ b/pkg/swagger/docs.go @@ -64,7 +64,7 @@ const docTemplate = `{ "200": { "description": "OK", "schema": { - "$ref": "#/definitions/code_vikunja_io_api_pkg_modules_auth.Token" + "$ref": "#/definitions/auth.Token" } }, "500": { @@ -741,7 +741,7 @@ const docTemplate = `{ "200": { "description": "OK", "schema": { - "$ref": "#/definitions/code_vikunja_io_api_pkg_modules_auth.Token" + "$ref": "#/definitions/auth.Token" } }, "400": { @@ -3923,7 +3923,7 @@ const docTemplate = `{ "200": { "description": "The valid jwt auth token.", "schema": { - "$ref": "#/definitions/code_vikunja_io_api_pkg_modules_auth.Token" + "$ref": "#/definitions/auth.Token" } }, "400": { @@ -7366,7 +7366,7 @@ const docTemplate = `{ "200": { "description": "OK", "schema": { - "$ref": "#/definitions/code_vikunja_io_api_pkg_modules_auth.Token" + "$ref": "#/definitions/auth.Token" } }, "400": { @@ -7702,6 +7702,15 @@ const docTemplate = `{ } }, "definitions": { + "auth.Token": { + "type": "object", + "properties": { + "token": { + "type": "string", + "example": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c" + } + } + }, "background.Image": { "type": "object", "properties": { @@ -7722,15 +7731,6 @@ const docTemplate = `{ } } }, - "code_vikunja_io_api_pkg_modules_auth.Token": { - "type": "object", - "properties": { - "token": { - "type": "string", - "example": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c" - } - } - }, "files.File": { "type": "object", "properties": { diff --git a/pkg/swagger/swagger.json b/pkg/swagger/swagger.json index cd544c5cb..c5e55c4da 100644 --- a/pkg/swagger/swagger.json +++ b/pkg/swagger/swagger.json @@ -56,7 +56,7 @@ "200": { "description": "OK", "schema": { - "$ref": "#/definitions/code_vikunja_io_api_pkg_modules_auth.Token" + "$ref": "#/definitions/auth.Token" } }, "500": { @@ -733,7 +733,7 @@ "200": { "description": "OK", "schema": { - "$ref": "#/definitions/code_vikunja_io_api_pkg_modules_auth.Token" + "$ref": "#/definitions/auth.Token" } }, "400": { @@ -3915,7 +3915,7 @@ "200": { "description": "The valid jwt auth token.", "schema": { - "$ref": "#/definitions/code_vikunja_io_api_pkg_modules_auth.Token" + "$ref": "#/definitions/auth.Token" } }, "400": { @@ -7358,7 +7358,7 @@ "200": { "description": "OK", "schema": { - "$ref": "#/definitions/code_vikunja_io_api_pkg_modules_auth.Token" + "$ref": "#/definitions/auth.Token" } }, "400": { @@ -7694,6 +7694,15 @@ } }, "definitions": { + "auth.Token": { + "type": "object", + "properties": { + "token": { + "type": "string", + "example": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c" + } + } + }, "background.Image": { "type": "object", "properties": { @@ -7714,15 +7723,6 @@ } } }, - "code_vikunja_io_api_pkg_modules_auth.Token": { - "type": "object", - "properties": { - "token": { - "type": "string", - "example": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c" - } - } - }, "files.File": { "type": "object", "properties": { diff --git a/pkg/swagger/swagger.yaml b/pkg/swagger/swagger.yaml index b7815078c..3f8c20172 100644 --- a/pkg/swagger/swagger.yaml +++ b/pkg/swagger/swagger.yaml @@ -1,5 +1,11 @@ basePath: /api/v1 definitions: + auth.Token: + properties: + token: + example: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c + type: string + type: object background.Image: properties: blur_hash: @@ -14,12 +20,6 @@ definitions: url: type: string type: object - code_vikunja_io_api_pkg_modules_auth.Token: - properties: - token: - example: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c - type: string - type: object files.File: properties: created: @@ -1825,7 +1825,7 @@ paths: "200": description: OK schema: - $ref: '#/definitions/code_vikunja_io_api_pkg_modules_auth.Token' + $ref: '#/definitions/auth.Token' "500": description: Internal error schema: @@ -2266,7 +2266,7 @@ paths: "200": description: OK schema: - $ref: '#/definitions/code_vikunja_io_api_pkg_modules_auth.Token' + $ref: '#/definitions/auth.Token' "400": description: Invalid user password model. schema: @@ -4382,7 +4382,7 @@ paths: "200": description: The valid jwt auth token. schema: - $ref: '#/definitions/code_vikunja_io_api_pkg_modules_auth.Token' + $ref: '#/definitions/auth.Token' "400": description: Invalid link share object provided. schema: @@ -6666,7 +6666,7 @@ paths: "200": description: OK schema: - $ref: '#/definitions/code_vikunja_io_api_pkg_modules_auth.Token' + $ref: '#/definitions/auth.Token' "400": description: Only user token are available for renew. schema: