From 67b737102627b43087ebacc347e178c68513940a Mon Sep 17 00:00:00 2001 From: Ken Sternberg Date: Mon, 7 Aug 2023 16:09:47 -0700 Subject: [PATCH] Rounding out the catalog. --- .../ak-application-wizard-authentication-method.ts | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/web/src/admin/applications/wizard/ak-application-wizard-authentication-method.ts b/web/src/admin/applications/wizard/ak-application-wizard-authentication-method.ts index 64ef82454..51a5cb140 100644 --- a/web/src/admin/applications/wizard/ak-application-wizard-authentication-method.ts +++ b/web/src/admin/applications/wizard/ak-application-wizard-authentication-method.ts @@ -2,12 +2,17 @@ import { customElement } from "@lit/reactive-element/decorators/custom-element.j import { TemplateResult, html } from "lit"; import ApplicationWizardPageBase from "./ApplicationWizardPageBase"; +import "./ldap/ak-application-wizard-authentication-by-ldap"; +import "./oauth/ak-application-wizard-authentication-by-oauth"; +import "./proxy/ak-application-wizard-authentication-for-reverse-proxy"; +import "./proxy/ak-application-wizard-authentication-for-single-forward-proxy"; // prettier-ignore const handlers = new Map TemplateResult>([ - ["ldapprovider", () => html``], - ["oauth2provider", () => html`

Under construction

`], - ["proxyprovider", () => html`

Under construction

`], + ["ldapprovider`", () => html``], + ["oauth2provider", () => html``], + ["proxyprovider-proxy", () => html``], + ["proxyprovider-forwardsingle", () => html``], ["radiusprovider", () => html`

Under construction

`], ["samlprovider", () => html`

Under construction

`], ["scimprovider", () => html`

Under construction

`],