feat: assign teams via oidc #3033

Open
viehlieb wants to merge 6 commits from viehlieb/frontend:assign_teams_via_oidc into main
2 changed files with 2 additions and 0 deletions
Showing only changes of commit 070b40076d - Show all commits

View File

@ -9,6 +9,7 @@ export interface ITeam extends IAbstract {
description: string
members: ITeamMember[]
right: Right
oidcId: string

What's the null value of this? An empty string?

What's the null value of this? An empty string?
createdBy: IUser
created: Date

View File

@ -13,6 +13,7 @@ export default class TeamModel extends AbstractModel<ITeam> implements ITeam {
description = ''
members: ITeamMember[] = []
right: Right = RIGHTS.READ
oidcId = ''
createdBy: IUser = {} // FIXME: seems wrong
created: Date = null