From 9a8f4c0b8c54f1994c2e5c9667ab59f1392d3de0 Mon Sep 17 00:00:00 2001 From: Philip Molares Date: Sat, 30 Oct 2021 23:58:17 +0200 Subject: [PATCH] feat: add SpecialGroup enum Signed-off-by: Philip Molares --- src/groups/groups.special.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/groups/groups.special.ts diff --git a/src/groups/groups.special.ts b/src/groups/groups.special.ts new file mode 100644 index 000000000..f0ca6c79c --- /dev/null +++ b/src/groups/groups.special.ts @@ -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', +}