1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-10-18 20:09:08 +02:00
unleash.unleash/frontend/src/interfaces/group.ts
Nuno Góis a3bf564100
feat: add SSO mappings to groups (#2175)
* feat: add SSO mappings to groups

* add feature flag to conditionally render

* fix EditGroupUsers

* fix: update snap
2022-10-13 11:34:47 +01:00

24 lines
408 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[];
}
export interface IGroupUser extends IUser {
joinedAt?: Date;
}
export interface IGroupUserModel {
user: {
id: number;
};
}