Files
twenty/packages/twenty-front/src/modules/settings/roles/states/settingsRoleIdsState.ts
Weiko 06ff16e086 add role update (#11217)
## Context
This PR introduces the new Create and Edit role components, behind the
PERMISSIONS_ENABLED_V2 feature flag.
2025-03-31 17:57:14 +02:00

7 lines
135 B
TypeScript

import { atom } from 'recoil';
export const settingsRoleIdsState = atom<string[]>({
key: 'settingsRoleIdsState',
default: [],
});