mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### What problem does this PR solve? feat: Bind data to TenantTable #2846 feat: Add TenantTable ### Type of change - [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
@ -60,3 +60,28 @@ interface Es {
|
||||
number_of_nodes: number;
|
||||
active_shards: number;
|
||||
}
|
||||
|
||||
export interface ITenantUser {
|
||||
avatar: null;
|
||||
delta_seconds: number;
|
||||
email: string;
|
||||
is_active: string;
|
||||
is_anonymous: string;
|
||||
is_authenticated: string;
|
||||
is_superuser: boolean;
|
||||
nickname: string;
|
||||
role: string;
|
||||
status: string;
|
||||
update_date: string;
|
||||
user_id: string;
|
||||
}
|
||||
|
||||
export interface ITenant {
|
||||
avatar: string;
|
||||
delta_seconds: number;
|
||||
email: string;
|
||||
nickname: string;
|
||||
role: string;
|
||||
tenant_id: string;
|
||||
update_date: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user