MCPcopy
hub / github.com/ModelEngine-Group/nexent / User

Interface User

frontend/types/auth.ts:6–13  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4export type UserRole = USER_ROLES;
5
6export interface User {
7 id: string;
8 email: string;
9 role: UserRole;
10 avatarUrl?: string;
11 tenantId?: string;
12 authProvider?: "local" | "cas";
13}
14
15// Session type definition
16// After HttpOnly cookie migration, tokens live in server-managed cookies.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected