* web: Partial fix for issue where config is not consistently available. * web: Fix issues surrounding controller readiness. * web: Catch abort errors when originating when wrapped by OpenAPI or Sentry. * web: Fix color on dark mode. --------- Co-authored-by: Simonyi Gergő <gergo@goauthentik.io>
13 lines
462 B
TypeScript
13 lines
462 B
TypeScript
import { Interface } from "#elements/Interface";
|
|
import { LicenseContextController } from "#elements/controllers/LicenseContextController";
|
|
import { VersionContextController } from "#elements/controllers/VersionContextController";
|
|
|
|
export class AuthenticatedInterface extends Interface {
|
|
constructor() {
|
|
super();
|
|
|
|
this.addController(new LicenseContextController(this));
|
|
this.addController(new VersionContextController(this));
|
|
}
|
|
}
|