2852fa3c5e
* api: fix types for config API * api: remove broken swagger UI * admin: re-fix system task enum * events: make event optional * events: fix Schema for notification transport test * flows: use APIView for Flow Executor * core: fix schema for Metrics APIs * web: rewrite to use generated API client * web: generate API Client in CI * admin: use x_cord and y_cord to prevent yaml issues * events: fix linting errors * web: don't lint generated code * core: fix fields not being required in TypeSerializer * flows: fix missing permission_classes * web: cleanup * web: fix rendering of graph on Overview page * web: cleanup imports * core: fix missing background image filter * flows: fix flows not advancing properly * stages/*: fix warnings during get_challenge * web: send Flow response as JSON instead of FormData * web: fix styles for horizontal tabs * web: add base chart class and custom chart for application view * root: generate ts client for e2e tests * web: don't attempt to connect to websocket in selenium tests * web: fix UserTokenList not being included in the build * web: fix styling for static token list * web: fix CSRF Token missing * stages/authenticator_static: fix error when disable static tokens * core: fix display issue when updating user info * web: fix Flow executor not showing spinner when redirecting
98 lines
2.4 KiB
TypeScript
98 lines
2.4 KiB
TypeScript
export class AdminURLManager {
|
|
|
|
static applications(rest: string): string {
|
|
return `/administration/applications/${rest}`;
|
|
}
|
|
|
|
static cryptoCertificates(rest: string): string {
|
|
return `/administration/crypto/certificates/${rest}`;
|
|
}
|
|
|
|
static policies(rest: string): string {
|
|
return `/administration/policies/${rest}`;
|
|
}
|
|
|
|
static policyBindings(rest: string): string {
|
|
return `/administration/policies/bindings/${rest}`;
|
|
}
|
|
|
|
static providers(rest: string): string {
|
|
return `/administration/providers/${rest}`;
|
|
}
|
|
|
|
static propertyMappings(rest: string): string {
|
|
return `/administration/property-mappings/${rest}`;
|
|
}
|
|
|
|
static outposts(rest: string): string {
|
|
return `/administration/outposts/${rest}`;
|
|
}
|
|
|
|
static outpostServiceConnections(rest: string): string {
|
|
return `/administration/outpost_service_connections/${rest}`;
|
|
}
|
|
|
|
static flows(rest: string): string {
|
|
return `/administration/flows/${rest}`;
|
|
}
|
|
|
|
static stages(rest: string): string {
|
|
return `/administration/stages/${rest}`;
|
|
}
|
|
|
|
static stagePrompts(rest: string): string {
|
|
return `/administration/stages_prompts/${rest}`;
|
|
}
|
|
|
|
static stageInvitations(rest: string): string {
|
|
return `/administration/stages/invitations/${rest}`;
|
|
}
|
|
|
|
static stageBindings(rest: string): string {
|
|
return `/administration/stages/bindings/${rest}`;
|
|
}
|
|
|
|
static sources(rest: string): string {
|
|
return `/administration/sources/${rest}`;
|
|
}
|
|
|
|
static tokens(rest: string): string {
|
|
return `/administration/tokens/${rest}`;
|
|
}
|
|
|
|
static eventRules(rest: string): string {
|
|
return `/administration/events/rules/${rest}`;
|
|
}
|
|
|
|
static eventTransports(rest: string): string {
|
|
return `/administration/events/transports/${rest}`;
|
|
}
|
|
|
|
static users(rest: string): string {
|
|
return `/administration/users/${rest}`;
|
|
}
|
|
|
|
static groups(rest: string): string {
|
|
return `/administration/groups/${rest}`;
|
|
}
|
|
}
|
|
|
|
export class UserURLManager {
|
|
|
|
static tokens(rest: string): string {
|
|
return `/-/user/tokens/${rest}`;
|
|
}
|
|
|
|
}
|
|
|
|
export class AppURLManager {
|
|
|
|
static sourceSAML(slug: string, rest: string): string {
|
|
return `/source/saml/${slug}/${rest}`;
|
|
}
|
|
static providerSAML(rest: string): string {
|
|
return `/application/saml/${rest}`;
|
|
}
|
|
|
|
}
|