mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-04-05 08:00:30 +00:00
Docs: Add description for common http codes
These are the descriptions for all 401, 403, 404 and 204 HTTP responses in HedgeDoc. Signed-off-by: Philip Molares <philip.molares@udo.edu>
This commit is contained in:
parent
47ca8be78b
commit
0e44f545a1
1 changed files with 13 additions and 0 deletions
13
src/api/utils/descriptions.ts
Normal file
13
src/api/utils/descriptions.ts
Normal file
|
@ -0,0 +1,13 @@
|
|||
/*
|
||||
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
||||
*
|
||||
* SPDX-License-Identifier: AGPL-3.0-only
|
||||
*/
|
||||
|
||||
export const unauthorizedDescription =
|
||||
'Authorization information is missing or invalid';
|
||||
export const forbiddenDescription =
|
||||
'Access to the requested resource is not permitted';
|
||||
export const notFoundDescription = 'The requested resource was not found';
|
||||
export const successfullyDeletedDescription =
|
||||
'The requested resource was sucessfully deleted';
|
Loading…
Reference in a new issue