chore: revert license and remove unused query key/doc reference

This commit is contained in:
Scott Wilson
2025-01-30 10:35:23 -08:00
parent 9cc7edc869
commit 59666740ca
3 changed files with 2 additions and 5 deletions

View File

@@ -31,10 +31,10 @@ export const getDefaultOnPremFeatures = (): TFeatureSet => ({
auditLogStreamLimit: 3,
samlSSO: false,
hsm: false,
oidcSSO: true,
oidcSSO: false,
scim: false,
ldap: false,
groups: true,
groups: false,
status: null,
trial_end: null,
has_used_trial: true,

View File

@@ -93,7 +93,6 @@ Permission inversion allows you to explicitly deny actions instead of allowing t
- secret-folders
- secret-imports
- dynamic-secrets
- cmek
When a permission is inverted, it changes from an "allow" rule to a "deny" rule. For example:

View File

@@ -6,8 +6,6 @@ import { EFilterReturnedUsers, TGroup, TGroupUser } from "./types";
export const groupKeys = {
getGroupById: (groupId: string) => [{ groupId }, "group"] as const,
isGroupMembershipManagementDisabled: (orgId: string) =>
["group-memberships-management-disabled", orgId] as const,
allGroupUserMemberships: () => ["group-user-memberships"] as const,
forGroupUserMemberships: (slug: string) =>
[...groupKeys.allGroupUserMemberships(), slug] as const,