Skip to content

Commit

Permalink
update assignment types
Browse files Browse the repository at this point in the history
  • Loading branch information
vidyanambiar committed May 8, 2024
1 parent ae5ab4e commit c5596c8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions frontend/eda/access/interfaces/Assignment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,5 @@ export type Assignment = {
};
object_id: string;
content_type: string;
role_definition: number;
};
1 change: 1 addition & 0 deletions frontend/eda/access/interfaces/TeamAssignment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,5 @@ export type TeamAssignment = Assignment & {
name: string;
};
};
team: number;
};
1 change: 1 addition & 0 deletions frontend/eda/access/interfaces/UserAssignment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ export type UserAssignment = Assignment & {
last_name: string;
};
};
user: number;
};

0 comments on commit c5596c8

Please sign in to comment.