change color palette, change user_id to member_id

This commit is contained in:
Gregor Vostrak
2024-05-21 01:53:50 +02:00
parent 68ecc1227d
commit 8b12dec546
51 changed files with 836 additions and 388 deletions

View File

@@ -75,6 +75,8 @@ export interface Task {
organization: Organization;
}
type OrganizationWithMembership = Organization & { membership: Membership };
export interface User {
// columns
id: string;
@@ -98,6 +100,7 @@ export interface User {
organizations: Organization[];
clients: Client[];
current_team: Organization;
all_teams: OrganizationWithMembership[];
owned_teams: Organization[];
teams: Organization[];
}