mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
26 lines
675 B
TypeScript
26 lines
675 B
TypeScript
|
export class SamlUrls {
|
||
|
static readonly samlRESTRoot = '/rest/sso/saml';
|
||
|
|
||
|
static readonly initSSO = '/initsso';
|
||
|
|
||
|
static readonly restInitSSO = this.samlRESTRoot + this.initSSO;
|
||
|
|
||
|
static readonly acs = '/acs';
|
||
|
|
||
|
static readonly restAcs = this.samlRESTRoot + this.acs;
|
||
|
|
||
|
static readonly metadata = '/metadata';
|
||
|
|
||
|
static readonly restMetadata = this.samlRESTRoot + this.metadata;
|
||
|
|
||
|
static readonly config = '/config';
|
||
|
|
||
|
static readonly restConfig = this.samlRESTRoot + this.config;
|
||
|
|
||
|
static readonly defaultRedirect = '/';
|
||
|
|
||
|
static readonly samlOnboarding = '/settings/personal'; // TODO:SAML: implement signup page
|
||
|
}
|
||
|
|
||
|
export const SAML_PREFERENCES_DB_KEY = 'features.saml';
|