add user-group entity

This commit is contained in:
Jesper Møller Jensen
2022-10-12 11:08:04 +02:00
parent 8d86aa5c67
commit 089f97eb1f

View File

@@ -77,3 +77,16 @@ export interface UserDetails extends UserEntity {
failedLoginAttempts: number;
userGroup?: string; //TODO Implement this
}
export interface UserGroupEntity extends Entity {
type: 'userGroup';
}
export interface UserGroupDetails extends UserGroupEntity {
key: string;
name: string;
icon: string;
sections?: Array<string>;
contentStartNode?: string;
mediaStartNode?: string;
}