feat(workspaces): expand detail page member list
This commit is contained in:
@@ -19,13 +19,15 @@ export interface PaginatedResponse<T> {
|
||||
export interface WorkspaceMembership {
|
||||
id: string;
|
||||
workspace: string;
|
||||
user: {
|
||||
id: string;
|
||||
email: string;
|
||||
first_name?: string;
|
||||
last_name?: string;
|
||||
[key: string]: any;
|
||||
};
|
||||
user: {
|
||||
id: string;
|
||||
email?: string;
|
||||
first_name?: string;
|
||||
last_name?: string;
|
||||
mobile?: string;
|
||||
profile_picture?: string | null;
|
||||
[key: string]: any;
|
||||
};
|
||||
role: 'owner' | 'admin' | 'member' | 'guest';
|
||||
is_active: boolean;
|
||||
joined_at?: string;
|
||||
|
||||
Reference in New Issue
Block a user