Show SCIM banner in group list

This commit is contained in:
adrinr 2023-03-21 14:21:02 +00:00
parent 2e40cc6926
commit 76f6c86c0a
1 changed files with 9 additions and 4 deletions

View File

@ -21,6 +21,7 @@
import UsersTableRenderer from "./_components/UsersTableRenderer.svelte" import UsersTableRenderer from "./_components/UsersTableRenderer.svelte"
import GroupNameTableRenderer from "./_components/GroupNameTableRenderer.svelte" import GroupNameTableRenderer from "./_components/GroupNameTableRenderer.svelte"
import { goto } from "@roxi/routify" import { goto } from "@roxi/routify"
import ScimBanner from "../_components/SCIMBanner.svelte"
const DefaultGroup = { const DefaultGroup = {
name: "", name: "",
@ -106,10 +107,14 @@
<div class="controls"> <div class="controls">
<ButtonGroup> <ButtonGroup>
{#if $licensing.groupsEnabled} {#if $licensing.groupsEnabled}
{#if !$licensing.scimEnabled}
<!--Show the group create button--> <!--Show the group create button-->
<Button disabled={readonly} cta on:click={showCreateGroupModal}> <Button disabled={readonly} cta on:click={showCreateGroupModal}>
Add group Add group
</Button> </Button>
{:else}
<ScimBanner />
{/if}
{:else} {:else}
<Button <Button
primary primary