mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-29 08:34:17 -05:00
feat: create permission enum
This enum makes it possible which permissions a user needs to hold to access a specific resource Signed-off-by: Philip Molares <philip.molares@udo.edu>
This commit is contained in:
parent
82643cd790
commit
4a7ccc8178
1 changed files with 21 additions and 0 deletions
21
src/permissions/permissions.enum.ts
Normal file
21
src/permissions/permissions.enum.ts
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
/*
|
||||||
|
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: AGPL-3.0-only
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
||||||
|
*
|
||||||
|
* SPDX-License-Identifier: AGPL-3.0-only
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Represents the Permissions a user may hold in a request
|
||||||
|
*/
|
||||||
|
export enum Permission {
|
||||||
|
READ = 'read',
|
||||||
|
WRITE = 'write',
|
||||||
|
CREATE = 'create',
|
||||||
|
OWNER = 'owner',
|
||||||
|
}
|
Loading…
Reference in a new issue