mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-27 03:58:02 -05:00
929795637a
Signed-off-by: Philip Molares <philip.molares@udo.edu>
16 lines
336 B
TypeScript
16 lines
336 B
TypeScript
/*
|
|
* SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
|
|
*
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
export enum GitlabScope {
|
|
READ_USER = 'read_user',
|
|
API = 'api',
|
|
}
|
|
|
|
// ToDo: Evaluate if V3 is really necessary anymore (it's deprecated since 2017)
|
|
export enum GitlabVersion {
|
|
V3 = 'v3',
|
|
V4 = 'v4',
|
|
}
|