24 lines
579 B
TypeScript
24 lines
579 B
TypeScript
export namespace SystemSettings {
|
|
export namespace Auth {
|
|
export enum Oauth2 {
|
|
Enabled = 'auth.oauth2.enabled',
|
|
EncryptionSecret = 'auth.oauth2.encryption_secret',
|
|
}
|
|
export enum TokenManagement {
|
|
SigningSecret = 'auth.token-management.signing_secret',
|
|
}
|
|
}
|
|
|
|
export enum Graphql {
|
|
Debug = 'graphql.debug.enabled',
|
|
IntrospectionEnabled = 'graphql.introspection.enabled',
|
|
PlaygroundEnabled = 'graphql.playground.enabled',
|
|
}
|
|
|
|
export namespace Dav {
|
|
export enum Contacts {
|
|
Enabled = 'dav.contacts.enabled',
|
|
}
|
|
}
|
|
}
|