MCPcopy
hub / github.com/dataelement/Clawith / User

Interface User

frontend/src/types/index.ts:3–17  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1/** Shared TypeScript types */
2
3export interface User {
4 id: string;
5 username: string;
6 email: string;
7 display_name: string;
8 avatar_url?: string;
9 role: 'platform_admin' | 'org_admin' | 'agent_admin' | 'member';
10 is_platform_admin?: boolean;
11 tenant_id?: string;
12 title?: string;
13 feishu_open_id?: string;
14 is_active: boolean;
15 email_verified?: boolean;
16 created_at: string;
17}
18
19export interface Agent {
20 id: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected