mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2025-03-26 09:07:11 +00:00
this enum is used to specify which relation of the user object should be populated. Signed-off-by: Philip Molares <philip.molares@udo.edu>
10 lines
219 B
TypeScript
10 lines
219 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
export enum UserRelationEnum {
|
|
AUTHTOKENS = 'authTokens',
|
|
IDENTITIES = 'identities',
|
|
}
|