mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-21 17:26:29 -05:00
/config is now tagged as server to
Signed-off-by: Philip Molares <philip.molares@udo.edu>
This commit is contained in:
parent
10020ede69
commit
f98fffa888
1 changed files with 15 additions and 1 deletions
|
@ -531,7 +531,7 @@ paths:
|
|||
/config:
|
||||
get:
|
||||
tags:
|
||||
- config
|
||||
- server
|
||||
summary: The config of the backend
|
||||
operationId: getConfig
|
||||
responses:
|
||||
|
@ -541,6 +541,20 @@ paths:
|
|||
application/json:
|
||||
schema:
|
||||
"$ref": "#/components/schemas/Config"
|
||||
/status:
|
||||
get:
|
||||
tags:
|
||||
- server
|
||||
summary: Returns the current status of the CodiMD instance.
|
||||
operationId: getStatus
|
||||
description: The data is returned as a JSON object containing the number of notes stored on the server, (distinct) online users and more.
|
||||
responses:
|
||||
'200':
|
||||
description: The server info
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
"$ref": "#/components/schemas/ServerStatus"
|
||||
components:
|
||||
schemas:
|
||||
UserInfo:
|
||||
|
|
Loading…
Reference in a new issue