File tree Expand file tree Collapse file tree 3 files changed +6
-1
lines changed
src/ui/registry/units/common Expand file tree Collapse file tree 3 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -59,11 +59,13 @@ import type {OpenDialogOrganizationInviteUsers} from './types/functions/openDial
5959import type { RenderDialogRelatedEntitiesAlertHint } from './types/functions/renderDialogRelatedEntitiesAlertHint' ;
6060import type { ResolveUsersByIds } from './types/functions/resolveUsersByIds' ;
6161import type { SetEntryKey } from './types/functions/setEntryKey' ;
62+ import type { UseOrganizationData } from './types/functions/useOrganizationData' ;
6263import type { UseSubjectsListId } from './types/functions/useSubjectsListId' ;
6364
6465export const commonFunctionsMap = {
6566 [ EXAMPLE_FUNCTION ] : makeFunctionTemplate < ( arg : number ) => string > ( ) ,
6667 useSubjectsListId : makeFunctionTemplate < ( ) => UseSubjectsListId > ( ) ,
68+ useOrganizationData : makeFunctionTemplate < ( ) => UseOrganizationData > ( ) ,
6769 openDialogOrganizationInvite : makeFunctionTemplate < ( ) => OpenDialogOrganizationInvite > ( ) ,
6870 openDialogOrganizationInviteUsers :
6971 makeFunctionTemplate < ( ) => OpenDialogOrganizationInviteUsers > ( ) ,
Original file line number Diff line number Diff line change 1+ export type UseOrganizationData = {
2+ id : string | undefined ;
3+ title : string | undefined ;
4+ } ;
Original file line number Diff line number Diff line change 11export type UseSubjectsListId = {
22 type : 'organizationId' | 'cloudId' ;
33 id : string | undefined ;
4- title : string | undefined ;
54} ;
You can’t perform that action at this time.
0 commit comments