extend teams model to include oidcId

This commit is contained in:
viehlieb 2023-01-30 14:52:20 +01:00
parent 77f0776d0b
commit 070b40076d
2 changed files with 2 additions and 0 deletions

View File

@ -9,6 +9,7 @@ export interface ITeam extends IAbstract {
description: string
members: ITeamMember[]
right: Right
oidcId: 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