mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2025-12-13 07:46:10 +00:00
9 lines
269 B
TypeScript
9 lines
269 B
TypeScript
export interface PermissionCondition {
|
|
user_created?: {
|
|
_eq: string // Erwartet den speziellen Wert "$CURRENT_USER" oder eine spezifische UUID
|
|
}
|
|
public_edit?: {
|
|
_eq: boolean // Erwartet den speziellen Wert "$CURRENT_USER" oder eine spezifische UUID
|
|
}
|
|
}
|