web/admin: disable generated proxy config by default (#5372)
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
parent
58a5c69f49
commit
e05f028c0a
|
@ -16,10 +16,12 @@ import "@goauthentik/elements/CodeMirror";
|
||||||
import { PFColor } from "@goauthentik/elements/Label";
|
import { PFColor } from "@goauthentik/elements/Label";
|
||||||
import "@goauthentik/elements/Markdown";
|
import "@goauthentik/elements/Markdown";
|
||||||
import "@goauthentik/elements/Markdown";
|
import "@goauthentik/elements/Markdown";
|
||||||
|
import { Replacer } from "@goauthentik/elements/Markdown";
|
||||||
import "@goauthentik/elements/Tabs";
|
import "@goauthentik/elements/Tabs";
|
||||||
import "@goauthentik/elements/buttons/ModalButton";
|
import "@goauthentik/elements/buttons/ModalButton";
|
||||||
import "@goauthentik/elements/buttons/SpinnerButton";
|
import "@goauthentik/elements/buttons/SpinnerButton";
|
||||||
import "@goauthentik/elements/events/ObjectChangelog";
|
import "@goauthentik/elements/events/ObjectChangelog";
|
||||||
|
import { getURLParam } from "@goauthentik/elements/router/RouteMatch";
|
||||||
|
|
||||||
import { t } from "@lingui/macro";
|
import { t } from "@lingui/macro";
|
||||||
|
|
||||||
|
@ -140,8 +142,13 @@ export class ProxyProviderViewPage extends AKElement {
|
||||||
md: MDCaddyStandalone,
|
md: MDCaddyStandalone,
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
const replacers = [
|
const replacers: Replacer[] = [
|
||||||
(input: string): string => {
|
(input: string): string => {
|
||||||
|
// The generated config is pretty unreliable currently so
|
||||||
|
// put it behind a flag
|
||||||
|
if (!getURLParam("generatedConfig", false)) {
|
||||||
|
return input;
|
||||||
|
}
|
||||||
if (!this.provider) {
|
if (!this.provider) {
|
||||||
return input;
|
return input;
|
||||||
}
|
}
|
||||||
|
|
Reference in New Issue