*: remove outdated preview badges (#12950)

* remove outdated preview badges

* remove from web ui too

Signed-off-by: Jens Langhammer <jens@goauthentik.io>

---------

Signed-off-by: Jens Langhammer <jens@goauthentik.io>
Co-authored-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
Simonyi Gergő
2025-02-07 00:02:17 +01:00
committed by GitHub
parent 26a08fcaac
commit daebeb1192
8 changed files with 2 additions and 30 deletions

View File

@ -16,7 +16,6 @@ import { msg } from "@lit/localize";
import { CSSResult, PropertyValues, TemplateResult, html } from "lit"; import { CSSResult, PropertyValues, TemplateResult, html } from "lit";
import { customElement, property, state } from "lit/decorators.js"; 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 PFButton from "@patternfly/patternfly/components/Button/button.css";
import PFCard from "@patternfly/patternfly/components/Card/card.css"; import PFCard from "@patternfly/patternfly/components/Card/card.css";
import PFContent from "@patternfly/patternfly/components/Content/content.css"; import PFContent from "@patternfly/patternfly/components/Content/content.css";
@ -51,7 +50,6 @@ export class GoogleWorkspaceProviderViewPage extends AKElement {
return [ return [
PFBase, PFBase,
PFButton, PFButton,
PFBanner,
PFForm, PFForm,
PFFormControl, PFFormControl,
PFStack, PFStack,
@ -157,11 +155,7 @@ export class GoogleWorkspaceProviderViewPage extends AKElement {
if (!this.provider) { if (!this.provider) {
return html``; return html``;
} }
return html`<div slot="header" class="pf-c-banner pf-m-info"> return html`${!this.provider?.assignedBackchannelApplicationName
${msg("Google Workspace Provider is in preview.")}
<a href="mailto:hello+feature/gws@goauthentik.io">${msg("Send us feedback!")}</a>
</div>
${!this.provider?.assignedBackchannelApplicationName
? html`<div slot="header" class="pf-c-banner pf-m-warning"> ? html`<div slot="header" class="pf-c-banner pf-m-warning">
${msg( ${msg(
"Warning: Provider is not assigned to an application as backchannel provider.", "Warning: Provider is not assigned to an application as backchannel provider.",

View File

@ -16,7 +16,6 @@ import { msg } from "@lit/localize";
import { CSSResult, PropertyValues, TemplateResult, html } from "lit"; import { CSSResult, PropertyValues, TemplateResult, html } from "lit";
import { customElement, property, state } from "lit/decorators.js"; 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 PFButton from "@patternfly/patternfly/components/Button/button.css";
import PFCard from "@patternfly/patternfly/components/Card/card.css"; import PFCard from "@patternfly/patternfly/components/Card/card.css";
import PFContent from "@patternfly/patternfly/components/Content/content.css"; import PFContent from "@patternfly/patternfly/components/Content/content.css";
@ -51,7 +50,6 @@ export class MicrosoftEntraProviderViewPage extends AKElement {
return [ return [
PFBase, PFBase,
PFButton, PFButton,
PFBanner,
PFForm, PFForm,
PFFormControl, PFFormControl,
PFStack, PFStack,
@ -157,11 +155,7 @@ export class MicrosoftEntraProviderViewPage extends AKElement {
if (!this.provider) { if (!this.provider) {
return html``; return html``;
} }
return html`<div slot="header" class="pf-c-banner pf-m-info"> return html`${!this.provider?.assignedBackchannelApplicationName
${msg("Microsoft Entra Provider is in preview.")}
<a href="mailto:hello+feature/mse@goauthentik.io">${msg("Send us feedback!")}</a>
</div>
${!this.provider?.assignedBackchannelApplicationName
? html`<div slot="header" class="pf-c-banner pf-m-warning"> ? html`<div slot="header" class="pf-c-banner pf-m-warning">
${msg( ${msg(
"Warning: Provider is not assigned to an application as backchannel provider.", "Warning: Provider is not assigned to an application as backchannel provider.",

View File

@ -16,7 +16,6 @@ import { msg } from "@lit/localize";
import { CSSResult, TemplateResult, html } from "lit"; import { CSSResult, TemplateResult, html } from "lit";
import { customElement, property } from "lit/decorators.js"; 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 PFButton from "@patternfly/patternfly/components/Button/button.css";
import PFCard from "@patternfly/patternfly/components/Card/card.css"; import PFCard from "@patternfly/patternfly/components/Card/card.css";
import PFContent from "@patternfly/patternfly/components/Content/content.css"; import PFContent from "@patternfly/patternfly/components/Content/content.css";
@ -60,7 +59,6 @@ export class SCIMSourceViewPage extends AKElement {
PFContent, PFContent,
PFCard, PFCard,
PFDescriptionList, PFDescriptionList,
PFBanner,
]; ];
} }
@ -78,12 +76,6 @@ export class SCIMSourceViewPage extends AKElement {
} }
return html`<ak-tabs> return html`<ak-tabs>
<section slot="page-overview" data-tab-title="${msg("Overview")}"> <section slot="page-overview" data-tab-title="${msg("Overview")}">
<div slot="header" class="pf-c-banner pf-m-info">
${msg("SCIM Source is in preview.")}
<a href="mailto:hello+feature/scim-source@goauthentik.io"
>${msg("Send us feedback!")}</a
>
</div>
<div class="pf-c-page__main-section pf-m-no-padding-mobile pf-l-grid pf-m-gutter"> <div class="pf-c-page__main-section pf-m-no-padding-mobile pf-l-grid pf-m-gutter">
<div class="pf-c-card pf-l-grid__item pf-m-12-col"> <div class="pf-c-card pf-l-grid__item pf-m-12-col">
<div class="pf-c-card__body"> <div class="pf-c-card__body">

View File

@ -3,7 +3,6 @@ title: Add an Entra ID provider
--- ---
<span class="badge badge--primary">Enterprise</span> <span class="badge badge--primary">Enterprise</span>
<span class="badge badge--preview">Preview</span>
--- ---

View File

@ -3,7 +3,6 @@ title: Microsoft Entra ID provider
--- ---
<span class="badge badge--primary">Enterprise</span> <span class="badge badge--primary">Enterprise</span>
<span class="badge badge--preview">Preview</span>
--- ---

View File

@ -3,7 +3,6 @@ title: Create a Google Workspace provider
--- ---
<span class="badge badge--primary">Enterprise</span> <span class="badge badge--primary">Enterprise</span>
<span class="badge badge--preview">Preview</span>
--- ---

View File

@ -3,7 +3,6 @@ title: Google Workspace provider
--- ---
<span class="badge badge--primary">Enterprise</span> <span class="badge badge--primary">Enterprise</span>
<span class="badge badge--preview">Preview</span>
--- ---

View File

@ -2,10 +2,6 @@
title: SCIM Source title: SCIM Source
--- ---
<span class="badge badge--preview">Preview</span>
---
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 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/<source-slug>/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. The base SCIM URL is in the format of `https://authentik.company/source/scim/<source-slug>/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.