Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

block SCIM access for trial orgs #971

Merged
merged 1 commit into from
Nov 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions src/ui/shared/settings-sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import {
} from "@app/routes";
import cn from "classnames";
import { NavLink } from "react-router-dom";
import { useTrialNotice } from "../hooks/use-trial-notice";
import { IconExternalLink, IconLock } from "./icons";
import { tokens } from "./tokens";
import { Tooltip } from "./tooltip";
Expand All @@ -37,6 +38,7 @@ export function SettingsSidebar() {
const hasManyOrgs = useSelector(selectHasManyOrgs);
const isAccountOwner = useSelector((s) => selectIsAccountOwner(s, { orgId }));
const hasBetaFeatures = useSelector(selectHasBetaFeatures);
const { hasTrialNoPayment } = useTrialNotice();

const navLink = ({ isActive }: { isActive: boolean }) =>
cn(navButton, { [inactive]: !isActive, [active]: isActive });
Expand Down Expand Up @@ -112,15 +114,19 @@ export function SettingsSidebar() {
</span>
)}

{isAccountOwner && !hasManyOrgs ? (
{isAccountOwner && !hasManyOrgs && !hasTrialNoPayment ? (
<NavLink className={navLink} to={teamScimUrl()}>
Provisioning
</NavLink>
) : (
<span className={navLink({ isActive: false })}>
Provisioning
<Tooltip
text="Must be account owner with a single assigned organization"
text={
hasTrialNoPayment
? "Feature not available for trial users"
: "Must be account owner with a single assigned organization"
}
fluid
>
<IconLock variant="sm" className="ml-1 opacity-60" />
Expand Down
Loading