1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-11-01 19:07:38 +01:00
unleash.unleash/frontend/src/interfaces/group.ts
Simon Hornby 3b42e866ec
feat: root roles from groups (#3559)
feat: adds a way to specify a root role on a group, which will cause any user entering into that group to take on the permissions of that root role

Co-authored-by: Nuno Góis <github@nunogois.com>
2023-04-20 12:29:30 +02:00

25 lines
431 B
TypeScript

import { IUser } from './user';
export interface IGroup {
id: number;
name: string;
description: string;
createdAt: Date;
users: IGroupUser[];
projects: string[];
addedAt?: string;
userCount?: number;
mappingsSSO: string[];
rootRole?: number;
}
export interface IGroupUser extends IUser {
joinedAt?: Date;
}
export interface IGroupUserModel {
user: {
id: number;
};
}