utopia-ui/src/types/PermissionCondition.d.ts
2025-02-09 20:32:41 +00:00

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
}
}