feat: add SpecialGroup enum

Signed-off-by: Philip Molares <philip.molares@udo.edu>
This commit is contained in:
Philip Molares 2021-10-30 23:58:17 +02:00 committed by David Mehren
parent 2a9f0f70cb
commit 9a8f4c0b8c
No known key found for this signature in database
GPG key ID: 185982BA4C42B7C3

View file

@ -0,0 +1,10 @@
/*
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
*
* SPDX-License-Identifier: AGPL-3.0-only
*/
export enum SpecialGroup {
LOGGED_IN = '_LOGGED_IN',
EVERYONE = '_EVERYONE',
}