Skip to content

Commit c11ebd5

Browse files
committed
feat: add user group dto
1 parent a5d15da commit c11ebd5

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

src/Pages/GlobalConfigurations/Authorization/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
*/
1616

1717
export * from './constants'
18-
export type { UserListFilterParams, UserRoleGroup, UserGroupType } from './types'
18+
export type { UserListFilterParams, UserRoleGroup, UserGroupDTO, UserGroupType } from './types'
1919
export * from './shared'

src/Pages/GlobalConfigurations/Authorization/types.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export interface UserRoleGroup {
4949
timeToLive: string
5050
}
5151

52-
export interface UserGroupType {
52+
export interface UserGroupDTO {
5353
/**
5454
* Unique display name of the user group
5555
*/
@@ -65,3 +65,5 @@ export interface UserGroupType {
6565
*/
6666
description: string
6767
}
68+
69+
export interface UserGroupType extends UserGroupDTO {}

src/Shared/Components/SelectPickerCustom/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ export { default as FilterSelectPickerCustom } from './FilterSelectPicker'
1919
export type {
2020
SelectPickerOptionType as SelectPickerCustomOptionType,
2121
SelectPickerVariantType as SelectPickerCustomVariantType,
22-
SelectPickerProps as SelectCustomPickerProps,
23-
FilterSelectPickerProps as FilterSelectCustomPickerProps,
22+
SelectPickerProps as SelectPickerCustomProps,
23+
FilterSelectPickerProps as FilterSelectPickerCustomProps,
2424
} from './type'

0 commit comments

Comments
 (0)