mirror of
https://github.com/langgenius/dify.git
synced 2026-07-21 02:28:30 +08:00
12 lines
359 B
TypeScript
12 lines
359 B
TypeScript
/**
|
|
* Shared permission levels for resources (datasets, credentials, etc.).
|
|
* Mirrors PermissionEnum from api/models/enums.py.
|
|
*/
|
|
export const PermissionLevel = {
|
|
onlyMe: 'only_me',
|
|
allTeamMembers: 'all_team_members',
|
|
partialMembers: 'partial_members',
|
|
} as const
|
|
|
|
export type PermissionLevel = (typeof PermissionLevel)[keyof typeof PermissionLevel]
|