mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-05-23 03:27:05 -04:00

These are the descriptions for all 401, 403, 404 and 204 HTTP responses in HedgeDoc. Signed-off-by: Philip Molares <philip.molares@udo.edu>
13 lines
484 B
TypeScript
13 lines
484 B
TypeScript
/*
|
|
* 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';
|