mirror of
https://github.com/Unleash/unleash.git
synced 2024-11-01 19:07:38 +01:00
08c4b60cef
* feat: update useProjectApi hook * fix: refactor to hooks * fix: remove some ts errors * fix: set message if error exists directly on response * fix: remove console logs * fix: typo * delete: context2 * feat: filter added user from user add list * fix: cleanup PR based on feedback * fix: handle undefined roles in ProjectRoleSelect * fix: use target value * fix: type event * fix: conflict * fix: add appropriate types * fix conflicts * fix: explicit query * fix: refactor list * refactor: permission icon button * fix: conflict * fix: ts errors * refactor: break list into its own component * fix: use stringifed deps * fix: explicit export * fix: update pr according to comments Co-authored-by: Fredrik Oseberg <fredrik.no@gmail.com>
17 lines
260 B
TypeScript
17 lines
260 B
TypeScript
interface IRole {
|
|
id: number;
|
|
name: string;
|
|
project: string | null;
|
|
description: string;
|
|
type: string;
|
|
}
|
|
|
|
export interface IProjectRole {
|
|
id: number;
|
|
name: string;
|
|
description: string;
|
|
type: string;
|
|
}
|
|
|
|
export default IRole;
|