Files
donutbrowser/donut-sync/src/auth/user-context.interface.ts
T
2026-02-15 11:48:59 +04:00

7 lines
242 B
TypeScript

export interface UserContext {
mode: "self-hosted" | "cloud";
prefix: string; // '' for self-hosted, 'users/{id}/' for cloud
teamPrefix: string | null; // 'teams/{id}/' or null
profileLimit: number; // 0 for unlimited (self-hosted)
}