refactor: add PingResponse and link to /api/auth/ping

This commit is contained in:
Derrick Hammer 2024-03-13 17:26:25 -04:00
parent 2f0a538033
commit 2e3ec1408e
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 9 additions and 0 deletions

View File

@ -124,6 +124,10 @@ paths:
responses:
'200':
description: Pong
content:
application/json:
schema:
$ref: '#/components/schemas/PingResponse'
'401':
description: Unauthorized
@ -216,3 +220,8 @@ components:
type: string
password:
type: string
PingResponse:
type: object
properties:
ping:
type: string