From 4ac3e557759a50b39aae85ef12d76b9d3a3b49a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simonyi=20Gerg=C5=91?= Date: Thu, 6 Feb 2025 10:55:17 +0100 Subject: [PATCH 1/2] remove outdated preview badges --- .../add-secure-apps/providers/entra/add-entra-provider.md | 1 - website/docs/add-secure-apps/providers/entra/index.md | 1 - .../docs/add-secure-apps/providers/gws/add-gws-provider.md | 1 - website/docs/add-secure-apps/providers/gws/index.md | 1 - website/docs/users-sources/sources/protocols/scim/index.md | 4 ---- 5 files changed, 8 deletions(-) diff --git a/website/docs/add-secure-apps/providers/entra/add-entra-provider.md b/website/docs/add-secure-apps/providers/entra/add-entra-provider.md index 7ff4f6b1b231..16c7f330bba5 100644 --- a/website/docs/add-secure-apps/providers/entra/add-entra-provider.md +++ b/website/docs/add-secure-apps/providers/entra/add-entra-provider.md @@ -3,7 +3,6 @@ title: Add an Entra ID provider --- Enterprise -Preview --- diff --git a/website/docs/add-secure-apps/providers/entra/index.md b/website/docs/add-secure-apps/providers/entra/index.md index cb32be8f0936..efcf163e6207 100644 --- a/website/docs/add-secure-apps/providers/entra/index.md +++ b/website/docs/add-secure-apps/providers/entra/index.md @@ -3,7 +3,6 @@ title: Microsoft Entra ID provider --- Enterprise -Preview --- diff --git a/website/docs/add-secure-apps/providers/gws/add-gws-provider.md b/website/docs/add-secure-apps/providers/gws/add-gws-provider.md index a1f42d07586c..6f1941a9c79d 100644 --- a/website/docs/add-secure-apps/providers/gws/add-gws-provider.md +++ b/website/docs/add-secure-apps/providers/gws/add-gws-provider.md @@ -3,7 +3,6 @@ title: Create a Google Workspace provider --- Enterprise -Preview --- diff --git a/website/docs/add-secure-apps/providers/gws/index.md b/website/docs/add-secure-apps/providers/gws/index.md index 50ffffb0a9e8..b92ae79f1ac6 100644 --- a/website/docs/add-secure-apps/providers/gws/index.md +++ b/website/docs/add-secure-apps/providers/gws/index.md @@ -3,7 +3,6 @@ title: Google Workspace provider --- Enterprise -Preview --- diff --git a/website/docs/users-sources/sources/protocols/scim/index.md b/website/docs/users-sources/sources/protocols/scim/index.md index 7ba4e00b37f3..a139f99201f8 100644 --- a/website/docs/users-sources/sources/protocols/scim/index.md +++ b/website/docs/users-sources/sources/protocols/scim/index.md @@ -2,10 +2,6 @@ title: SCIM Source --- -Preview - ---- - The SCIM source allows other applications to directly create users and groups within authentik. SCIM provides predefined schema for users and groups, with a RESTful API, to enable automatic user provisioning and deprovisioning, SCIM is supported by applications such as Microsoft Entra ID, Google Workspace, and Okta. The base SCIM URL is in the format of `https://authentik.company/source/scim//v2`. Authentication is done via Bearer tokens that are generated by authentik. When an SCIM source is created, a service account is created and a matching token is provided. From 9df854ee977791fa16949bc1690e9623cec74ac5 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Thu, 6 Feb 2025 13:24:44 +0100 Subject: [PATCH 2/2] remove from web ui too Signed-off-by: Jens Langhammer --- .../google_workspace/GoogleWorkspaceProviderViewPage.ts | 8 +------- .../microsoft_entra/MicrosoftEntraProviderViewPage.ts | 8 +------- web/src/admin/sources/scim/SCIMSourceViewPage.ts | 8 -------- 3 files changed, 2 insertions(+), 22 deletions(-) diff --git a/web/src/admin/providers/google_workspace/GoogleWorkspaceProviderViewPage.ts b/web/src/admin/providers/google_workspace/GoogleWorkspaceProviderViewPage.ts index 3cfefb72da8b..138bcad1f9af 100644 --- a/web/src/admin/providers/google_workspace/GoogleWorkspaceProviderViewPage.ts +++ b/web/src/admin/providers/google_workspace/GoogleWorkspaceProviderViewPage.ts @@ -16,7 +16,6 @@ import { msg } from "@lit/localize"; import { CSSResult, PropertyValues, TemplateResult, html } from "lit"; import { customElement, property, state } from "lit/decorators.js"; -import PFBanner from "@patternfly/patternfly/components/Banner/banner.css"; import PFButton from "@patternfly/patternfly/components/Button/button.css"; import PFCard from "@patternfly/patternfly/components/Card/card.css"; import PFContent from "@patternfly/patternfly/components/Content/content.css"; @@ -51,7 +50,6 @@ export class GoogleWorkspaceProviderViewPage extends AKElement { return [ PFBase, PFButton, - PFBanner, PFForm, PFFormControl, PFStack, @@ -157,11 +155,7 @@ export class GoogleWorkspaceProviderViewPage extends AKElement { if (!this.provider) { return html``; } - return html`
- ${msg("Google Workspace Provider is in preview.")} - ${msg("Send us feedback!")} -
- ${!this.provider?.assignedBackchannelApplicationName + return html`${!this.provider?.assignedBackchannelApplicationName ? html`
${msg( "Warning: Provider is not assigned to an application as backchannel provider.", diff --git a/web/src/admin/providers/microsoft_entra/MicrosoftEntraProviderViewPage.ts b/web/src/admin/providers/microsoft_entra/MicrosoftEntraProviderViewPage.ts index 0e113c97afb0..43e1809c5d9e 100644 --- a/web/src/admin/providers/microsoft_entra/MicrosoftEntraProviderViewPage.ts +++ b/web/src/admin/providers/microsoft_entra/MicrosoftEntraProviderViewPage.ts @@ -16,7 +16,6 @@ import { msg } from "@lit/localize"; import { CSSResult, PropertyValues, TemplateResult, html } from "lit"; import { customElement, property, state } from "lit/decorators.js"; -import PFBanner from "@patternfly/patternfly/components/Banner/banner.css"; import PFButton from "@patternfly/patternfly/components/Button/button.css"; import PFCard from "@patternfly/patternfly/components/Card/card.css"; import PFContent from "@patternfly/patternfly/components/Content/content.css"; @@ -51,7 +50,6 @@ export class MicrosoftEntraProviderViewPage extends AKElement { return [ PFBase, PFButton, - PFBanner, PFForm, PFFormControl, PFStack, @@ -157,11 +155,7 @@ export class MicrosoftEntraProviderViewPage extends AKElement { if (!this.provider) { return html``; } - return html`
- ${msg("Microsoft Entra Provider is in preview.")} - ${msg("Send us feedback!")} -
- ${!this.provider?.assignedBackchannelApplicationName + return html`${!this.provider?.assignedBackchannelApplicationName ? html`
${msg( "Warning: Provider is not assigned to an application as backchannel provider.", diff --git a/web/src/admin/sources/scim/SCIMSourceViewPage.ts b/web/src/admin/sources/scim/SCIMSourceViewPage.ts index 412a54219fb4..db74ca21246c 100644 --- a/web/src/admin/sources/scim/SCIMSourceViewPage.ts +++ b/web/src/admin/sources/scim/SCIMSourceViewPage.ts @@ -16,7 +16,6 @@ import { msg } from "@lit/localize"; import { CSSResult, TemplateResult, html } from "lit"; import { customElement, property } from "lit/decorators.js"; -import PFBanner from "@patternfly/patternfly/components/Banner/banner.css"; import PFButton from "@patternfly/patternfly/components/Button/button.css"; import PFCard from "@patternfly/patternfly/components/Card/card.css"; import PFContent from "@patternfly/patternfly/components/Content/content.css"; @@ -60,7 +59,6 @@ export class SCIMSourceViewPage extends AKElement { PFContent, PFCard, PFDescriptionList, - PFBanner, ]; } @@ -78,12 +76,6 @@ export class SCIMSourceViewPage extends AKElement { } return html`
-
- ${msg("SCIM Source is in preview.")} - ${msg("Send us feedback!")} -