We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecfbe22 commit a5d15daCopy full SHA for a5d15da
src/Pages/GlobalConfigurations/Authorization/index.ts
@@ -15,5 +15,5 @@
15
*/
16
17
export * from './constants'
18
-export type { UserListFilterParams, UserRoleGroup } from './types'
+export type { UserListFilterParams, UserRoleGroup, UserGroupType } from './types'
19
export * from './shared'
src/Pages/GlobalConfigurations/Authorization/types.ts
@@ -48,3 +48,20 @@ export interface UserRoleGroup {
48
49
timeToLive: string
50
}
51
+
52
+export interface UserGroupType {
53
+ /**
54
+ * Unique display name of the user group
55
+ */
56
+ name: string
57
58
+ * Unique id of the user group
59
+ *
60
+ * Follows the validation for app name
61
62
+ userGroupId: string
63
64
+ * Associated description
65
66
+ description: string
67
+}
0 commit comments