Remove hello in OpenAPI and change session tag to token

This commit is contained in:
2025-01-31 15:32:37 +01:00
parent 069e771c61
commit 6b1224bf97

View File

@ -16,8 +16,6 @@ externalDocs:
servers:
- url: ""
tags:
- name: hello
description: ""
- name: token
description: ""
- name: signing-request
@ -26,20 +24,6 @@ tags:
description: ""
paths:
/hello:
get:
tags:
- hello
summary: Get a hello from me
operationId: getHello
responses:
200:
description: "Hello"
content:
application/json:
schema:
$ref: "#/components/schemas/HelloResponse"
/signing-request/{id}:
get:
tags:
@ -139,7 +123,7 @@ paths:
/token:
post:
tags:
- session
- token
summary: Create a bearer token
operationId: createToken
requestBody:
@ -163,12 +147,6 @@ paths:
components:
schemas:
HelloResponse:
type: object
properties:
value:
type: string
CreateSessionRequest:
type: object
required:
@ -243,6 +221,3 @@ components:
code:
type: integer
description: Machine-readable error code
details:
type: object
description: Additional error details when available