Skip to content

Fix - Add Custom field 1 and Custom field 2 in the workspace member profile. #60277

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 19 commits into from
May 12, 2025
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/CONST.ts
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,7 @@ const CONST = {
TASK_TITLE_DISABLED_RULES: ['image'],
// Note: Group and Self-DM excluded as these are not tied to a Workspace
WORKSPACE_ROOM_TYPES: [chatTypes.POLICY_ADMINS, chatTypes.POLICY_ANNOUNCE, chatTypes.DOMAIN_ALL, chatTypes.POLICY_ROOM, chatTypes.POLICY_EXPENSE_CHAT, chatTypes.INVOICE],
CUSTOM_FIELD_KEYS: {customField1: 'employeeUserID', customField2: 'employeePayrollID'},
ANDROID_PACKAGE_NAME,
WORKSPACE_ENABLE_FEATURE_REDIRECT_DELAY: 100,
ANIMATED_HIGHLIGHT_ENTRY_DELAY: 50,
Expand Down
3 changes: 3 additions & 0 deletions src/ONYXKEYS.ts
Original file line number Diff line number Diff line change
Expand Up @@ -632,6 +632,8 @@ const ONYXKEYS = {
WORKSPACE_TAG_FORM_DRAFT: 'workspaceTagFormDraft',
WORKSPACE_SETTINGS_FORM_DRAFT: 'workspaceSettingsFormDraft',
WORKSPACE_DESCRIPTION_FORM: 'workspaceDescriptionForm',
WORKSPACE_CUSTOM_FIELD_FORM: 'WorkspaceCustomFieldForm',
WORKSPACE_CUSTOM_FIELD_FORM_DRAFT: 'WorkspaceCustomFieldFormDraft',
WORKSPACE_DESCRIPTION_FORM_DRAFT: 'workspaceDescriptionFormDraft',
WORKSPACE_TAX_CUSTOM_NAME: 'workspaceTaxCustomName',
WORKSPACE_TAX_CUSTOM_NAME_DRAFT: 'workspaceTaxCustomNameDraft',
Expand Down Expand Up @@ -868,6 +870,7 @@ type OnyxFormValuesMapping = {
[ONYXKEYS.FORMS.REIMBURSEMENT_ACCOUNT_FORM]: FormTypes.ReimbursementAccountForm;
[ONYXKEYS.FORMS.PERSONAL_BANK_ACCOUNT_FORM]: FormTypes.PersonalBankAccountForm;
[ONYXKEYS.FORMS.WORKSPACE_DESCRIPTION_FORM]: FormTypes.WorkspaceDescriptionForm;
[ONYXKEYS.FORMS.WORKSPACE_CUSTOM_FIELD_FORM]: FormTypes.WorkspaceCustomFieldsForm;
[ONYXKEYS.FORMS.WALLET_ADDITIONAL_DETAILS]: FormTypes.AdditionalDetailStepForm;
[ONYXKEYS.FORMS.POLICY_TAG_NAME_FORM]: FormTypes.PolicyTagNameForm;
[ONYXKEYS.FORMS.WORKSPACE_NEW_TAX_FORM]: FormTypes.WorkspaceNewTaxForm;
Expand Down
5 changes: 5 additions & 0 deletions src/ROUTES.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import Log from './libs/Log';
import type {ReimbursementAccountStepToOpen} from './libs/ReimbursementAccountUtils';
import type {ExitReason} from './types/form/ExitSurveyReasonForm';
import type {ConnectionName, SageIntacctMappingName} from './types/onyx/Policy';
import type {CustomFieldType} from './types/onyx/PolicyEmployee';
import type AssertTypesNotEqual from './types/utils/AssertTypesNotEqual';

// This is a file containing constants for all the routes we want to be able to go to
Expand Down Expand Up @@ -1499,6 +1500,10 @@ const ROUTES = {
route: 'settings/workspaces/:policyID/members/:accountID',
getRoute: (policyID: string, accountID: number) => `settings/workspaces/${policyID}/members/${accountID}` as const,
},
WORKSPACE_CUSTOM_FIELDS: {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
WORKSPACE_CUSTOM_FIELDS: {
WORKSPACE_MEMBER_CUSTOM_FIELDS: {

route: 'settings/workspace/:policyID/:accountID/:customFieldType',
getRoute: (policyID: string, accountID: number, customFieldType: CustomFieldType) => `/settings/workspace/${policyID}/${accountID}/${customFieldType}` as const,
},
WORKSPACE_MEMBER_NEW_CARD: {
route: 'settings/workspaces/:policyID/members/:accountID/new-card',
getRoute: (policyID: string, accountID: number) => `settings/workspaces/${policyID}/members/${accountID}/new-card` as const,
Expand Down
1 change: 1 addition & 0 deletions src/SCREENS.ts
Original file line number Diff line number Diff line change
Expand Up @@ -580,6 +580,7 @@ const SCREENS = {
CATEGORIES_IMPORTED: 'Categories_Imported',
MORE_FEATURES: 'Workspace_More_Features',
MEMBER_DETAILS: 'Workspace_Member_Details',
CUSTOM_FIELDS: 'Workspace_Custom_Fields',
MEMBER_NEW_CARD: 'Workspace_Member_NewCard',
OWNER_CHANGE_CHECK: 'Workspace_Owner_Change_Check',
OWNER_CHANGE_SUCCESS: 'Workspace_Owner_Change_Success',
Expand Down
3 changes: 3 additions & 0 deletions src/languages/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2892,6 +2892,9 @@ const translations = {
reimburse: 'Reimbursements',
categories: 'Categories',
tags: 'Tags',
customField1: 'Custom field 1',
customField2: 'Custom field 2',
customFieldHint: 'Add custom coding that applies to all spend from this member.',
reportFields: 'Report fields',
reportField: 'Report field',
taxes: 'Taxes',
Expand Down
3 changes: 3 additions & 0 deletions src/languages/es.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2919,6 +2919,9 @@ const translations = {
reimburse: 'Reembolsos',
categories: 'Categorías',
tags: 'Etiquetas',
customField1: 'Campo personalizado 1',
customField2: 'Campo personalizado 2',
customFieldHint: 'Añade una codificación personalizada que se aplique a todos los gastos de este miembro.',
reportFields: 'Campos de informe',
taxes: 'Impuestos',
bills: 'Pagar facturas',
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
type UpdatePolicyMembersCustomFieldsParams = {
policyID: string;
employees: string;
};

export default UpdatePolicyMembersCustomFieldsParams;
1 change: 1 addition & 0 deletions src/libs/API/parameters/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ export type {default as OpenPolicyCategoriesPageParams} from './OpenPolicyCatego
export type {default as OpenPolicyTagsPageParams} from './OpenPolicyTagsPageParams';
export type {default as OpenDraftWorkspaceRequestParams} from './OpenDraftWorkspaceRequestParams';
export type {default as CreateWorkspaceFromIOUPaymentParams} from './CreateWorkspaceFromIOUPaymentParams';
export type {default as UpdatePolicyMembersCustomFieldsParams} from './UpdatePolicyMembersCustomFieldsParams';
export type {default as CreateTaskParams} from './CreateTaskParams';
export type {default as CancelTaskParams} from './CancelTaskParams';
export type {default as EditTaskAssigneeParams} from './EditTaskAssigneeParams';
Expand Down
2 changes: 2 additions & 0 deletions src/libs/API/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ const WRITE_COMMANDS = {
UPDATE_WORKSPACE_MEMBERS_ROLE: 'UpdateWorkspaceMembersRole',
CREATE_WORKSPACE: 'CreateWorkspace',
CREATE_WORKSPACE_FROM_IOU_PAYMENT: 'CreateWorkspaceFromIOUPayment',
UPDATE_POLICY_MEMBERS_CUSTOM_FIELDS: 'UpdatePolicyMembersCustomFields',
SET_WORKSPACE_CATEGORIES_ENABLED: 'SetWorkspaceCategoriesEnabled',
MOVE_IOU_REPORT_TO_POLICY_AND_INVITE_SUBMITTER: 'MoveIOUReportToPolicyAndInviteSubmitter',
SET_POLICY_TAGS_ENABLED: 'SetPolicyTagsEnabled',
Expand Down Expand Up @@ -603,6 +604,7 @@ type WriteCommandParameters = {
[WRITE_COMMANDS.UPDATE_WORKSPACE_MEMBERS_ROLE]: Parameters.UpdateWorkspaceMembersRoleParams;
[WRITE_COMMANDS.CREATE_WORKSPACE]: Parameters.CreateWorkspaceParams;
[WRITE_COMMANDS.CREATE_WORKSPACE_FROM_IOU_PAYMENT]: Parameters.CreateWorkspaceFromIOUPaymentParams;
[WRITE_COMMANDS.UPDATE_POLICY_MEMBERS_CUSTOM_FIELDS]: Parameters.UpdatePolicyMembersCustomFieldsParams;
[WRITE_COMMANDS.MOVE_IOU_REPORT_TO_EXISTING_POLICY]: Parameters.MoveIOUReportToExistingPolicyParams;
[WRITE_COMMANDS.SET_WORKSPACE_CATEGORIES_ENABLED]: Parameters.SetWorkspaceCategoriesEnabledParams;
[WRITE_COMMANDS.MOVE_IOU_REPORT_TO_POLICY_AND_INVITE_SUBMITTER]: Parameters.MoveIOUReportToPolicyAndInviteSubmitterParams;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,7 @@ const SettingsModalStackNavigator = createModalStackNavigator<SettingsNavigatorP
[SCREENS.WORKSPACE.DOWNGRADE]: () => require<ReactComponentModule>('../../../../pages/workspace/downgrade/WorkspaceDowngradePage').default,
[SCREENS.WORKSPACE.PAY_AND_DOWNGRADE]: () => require<ReactComponentModule>('../../../../pages/workspace/downgrade/PayAndDowngradePage').default,
[SCREENS.WORKSPACE.MEMBER_DETAILS]: () => require<ReactComponentModule>('../../../../pages/workspace/members/WorkspaceMemberDetailsPage').default,
[SCREENS.WORKSPACE.CUSTOM_FIELDS]: () => require<ReactComponentModule>('../../../../pages/workspace/members/WorkspaceMembersCustomFieldsPage').default,
[SCREENS.WORKSPACE.MEMBER_NEW_CARD]: () => require<ReactComponentModule>('../../../../pages/workspace/members/WorkspaceMemberNewCardPage').default,
[SCREENS.WORKSPACE.OWNER_CHANGE_CHECK]: () => require<ReactComponentModule>('@pages/workspace/members/WorkspaceOwnerChangeWrapperPage').default,
[SCREENS.WORKSPACE.OWNER_CHANGE_SUCCESS]: () => require<ReactComponentModule>('../../../../pages/workspace/members/WorkspaceOwnerChangeSuccessPage').default,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ const WORKSPACE_TO_RHP: Partial<Record<keyof WorkspaceSplitNavigatorParamList, s
],
[SCREENS.WORKSPACE.MEMBERS]: [
SCREENS.WORKSPACE.MEMBER_DETAILS,
SCREENS.WORKSPACE.CUSTOM_FIELDS,
SCREENS.WORKSPACE.MEMBER_NEW_CARD,
SCREENS.WORKSPACE.OWNER_CHANGE_CHECK,
SCREENS.WORKSPACE.OWNER_CHANGE_SUCCESS,
Expand Down
3 changes: 3 additions & 0 deletions src/libs/Navigation/linkingConfig/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -717,6 +717,9 @@ const config: LinkingOptions<RootNavigatorParamList>['config'] = {
[SCREENS.WORKSPACE.MEMBER_DETAILS]: {
path: ROUTES.WORKSPACE_MEMBER_DETAILS.route,
},
[SCREENS.WORKSPACE.CUSTOM_FIELDS]: {
path: ROUTES.WORKSPACE_CUSTOM_FIELDS.route,
},
[SCREENS.WORKSPACE.MEMBER_NEW_CARD]: {
path: ROUTES.WORKSPACE_MEMBER_NEW_CARD.route,
},
Expand Down
6 changes: 6 additions & 0 deletions src/libs/Navigation/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import type SCREENS from '@src/SCREENS';
import type EXIT_SURVEY_REASON_FORM_INPUT_IDS from '@src/types/form/ExitSurveyReasonForm';
import type {CompanyCardFeed} from '@src/types/onyx';
import type {ConnectionName, SageIntacctMappingName} from '@src/types/onyx/Policy';
import type {CustomFieldType} from '@src/types/onyx/PolicyEmployee';
import type {SIDEBAR_TO_SPLIT} from './linkingConfig/RELATIONS';

type NavigationRef = NavigationContainerRefWithCurrent<RootNavigatorParamList>;
Expand Down Expand Up @@ -372,6 +373,11 @@ type SettingsNavigatorParamList = {
policyID: string;
accountID: string;
};
[SCREENS.WORKSPACE.CUSTOM_FIELDS]: {
policyID: string;
accountID: string;
customFieldType: CustomFieldType;
};
[SCREENS.WORKSPACE.MEMBER_NEW_CARD]: {
policyID: string;
accountID: string;
Expand Down
41 changes: 41 additions & 0 deletions src/libs/actions/Policy/Policy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ import type {
UpdateWorkspaceGeneralSettingsParams,
UpgradeToCorporateParams,
} from '@libs/API/parameters';
import type UpdatePolicyMembersCustomFieldsParams from '@libs/API/parameters/UpdatePolicyMembersCustomFieldsParams';
import {READ_COMMANDS, WRITE_COMMANDS} from '@libs/API/types';
import * as CurrencyUtils from '@libs/CurrencyUtils';
import DateUtils from '@libs/DateUtils';
Expand Down Expand Up @@ -102,6 +103,7 @@ import type {
} from '@src/types/onyx';
import type {Errors} from '@src/types/onyx/OnyxCommon';
import type {Attributes, CompanyAddress, CustomUnit, NetSuiteCustomList, NetSuiteCustomSegment, ProhibitedExpenses, Rate, TaxRate} from '@src/types/onyx/Policy';
import type {CustomFieldType} from '@src/types/onyx/PolicyEmployee';
import type {OnyxData} from '@src/types/onyx/Request';
import {isEmptyObject} from '@src/types/utils/EmptyObject';
import {buildOptimisticMccGroup, buildOptimisticPolicyCategories} from './Category';
Expand Down Expand Up @@ -2407,6 +2409,44 @@ function requestExpensifyCardLimitIncrease(settlementBankAccountID?: number) {
API.write(WRITE_COMMANDS.REQUEST_EXPENSIFY_CARD_LIMIT_INCREASE, params);
}

function updateCustomField(policyID: string, login: string, customFieldType: CustomFieldType, value: string) {
const customFieldKey = CONST.CUSTOM_FIELD_KEYS[customFieldType];
const policy = getPolicy(policyID);
const previousValue = policy?.employeeList?.[login]?.[customFieldKey];

const optimisticData: OnyxUpdate[] = [
{
key: `${ONYXKEYS.COLLECTION.POLICY}${policyID}`,
onyxMethod: Onyx.METHOD.MERGE,
value: {
employeeList: {[login]: {[customFieldKey]: value, pendingFields: {[customFieldKey]: CONST.RED_BRICK_ROAD_PENDING_ACTION.UPDATE}}},
},
},
];
const successData: OnyxUpdate[] = [
{
key: `${ONYXKEYS.COLLECTION.POLICY}${policyID}`,
onyxMethod: Onyx.METHOD.MERGE,
value: {
employeeList: {[login]: {pendingFields: {[customFieldKey]: null}}},
},
},
];
const failureData: OnyxUpdate[] = [
{
key: `${ONYXKEYS.COLLECTION.POLICY}${policyID}`,
onyxMethod: Onyx.METHOD.MERGE,
value: {
employeeList: {[login]: {[customFieldKey]: previousValue, pendingFields: {[customFieldKey]: null}}},
},
},
];

const params: UpdatePolicyMembersCustomFieldsParams = {policyID, employees: JSON.stringify([{email: login, [customFieldType]: value}])};

API.write(WRITE_COMMANDS.UPDATE_POLICY_MEMBERS_CUSTOM_FIELDS, params, {optimisticData, successData, failureData});
}

function setWorkspaceInviteMessageDraft(policyID: string, message: string | null) {
Onyx.set(`${ONYXKEYS.COLLECTION.WORKSPACE_INVITE_MESSAGE_DRAFT}${policyID}`, message);
}
Expand Down Expand Up @@ -5241,6 +5281,7 @@ export {
createPolicyExpenseChats,
upgradeToCorporate,
openPolicyExpensifyCardsPage,
updateCustomField,
openPolicyEditCardLimitTypePage,
requestExpensifyCardLimitIncrease,
getAdminPoliciesConnectedToNetSuite,
Expand Down
16 changes: 16 additions & 0 deletions src/pages/workspace/members/WorkspaceMemberDetailsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -351,6 +351,22 @@ function WorkspaceMemberDetailsPage({personalDetails, policy, route}: WorkspaceM
shouldShowRightIcon
onPress={openRoleSelectionModal}
/>
<OfflineWithFeedback pendingAction={member?.pendingFields?.employeeUserID}>
<MenuItemWithTopDescription
description={translate('workspace.common.customField1')}
title={member?.employeeUserID}
shouldShowRightIcon
onPress={() => Navigation.navigate(ROUTES.WORKSPACE_CUSTOM_FIELDS.getRoute(policyID, accountID, 'customField1'))}
/>
</OfflineWithFeedback>
<OfflineWithFeedback pendingAction={member?.pendingFields?.employeePayrollID}>
<MenuItemWithTopDescription
description={translate('workspace.common.customField2')}
title={member?.employeePayrollID}
shouldShowRightIcon
onPress={() => Navigation.navigate(ROUTES.WORKSPACE_CUSTOM_FIELDS.getRoute(policyID, accountID, 'customField2'))}
/>
</OfflineWithFeedback>
<MenuItem
style={styles.mb5}
title={translate('common.profile')}
Expand Down
83 changes: 83 additions & 0 deletions src/pages/workspace/members/WorkspaceMembersCustomFieldsPage.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
import React, {useState} from 'react';
import {View} from 'react-native';
import type {OnyxEntry} from 'react-native-onyx';
import FormProvider from '@components/Form/FormProvider';
import InputWrapper from '@components/Form/InputWrapper';
import HeaderWithBackButton from '@components/HeaderWithBackButton';
import ScreenWrapper from '@components/ScreenWrapper';
import Text from '@components/Text';
import TextInput from '@components/TextInput';
import useLocalize from '@hooks/useLocalize';
import useThemeStyles from '@hooks/useThemeStyles';
import {updateCustomField} from '@libs/actions/Policy/Policy';
import Navigation from '@libs/Navigation/Navigation';
import type {PlatformStackScreenProps} from '@libs/Navigation/PlatformStackNavigation/types';
import type {SettingsNavigatorParamList} from '@libs/Navigation/types';
import type {WithPolicyAndFullscreenLoadingProps} from '@pages/workspace/withPolicyAndFullscreenLoading';
import withPolicyAndFullscreenLoading from '@pages/workspace/withPolicyAndFullscreenLoading';
import CONST from '@src/CONST';
import ONYXKEYS from '@src/ONYXKEYS';
import ROUTES from '@src/ROUTES';
import type SCREENS from '@src/SCREENS';
import type {PersonalDetailsList} from '@src/types/onyx';

type WorkspacePolicyOnyxProps = {
/** Personal details of all users */
personalDetails: OnyxEntry<PersonalDetailsList>;
};
type MembersCustomFieldsPageProps = Omit<WithPolicyAndFullscreenLoadingProps, 'route'> &
WorkspacePolicyOnyxProps &
PlatformStackScreenProps<SettingsNavigatorParamList, typeof SCREENS.WORKSPACE.CUSTOM_FIELDS>;

function MembersCustomFieldsPage({policy, route, personalDetails}: MembersCustomFieldsPageProps) {
const styles = useThemeStyles();
const {translate} = useLocalize();
const params = route.params;
const customFieldType = params.customFieldType;
const accountID = Number(params.accountID);
const memberLogin = personalDetails?.[accountID]?.login ?? '';
const member = policy?.employeeList?.[memberLogin];
const customFieldKey = CONST.CUSTOM_FIELD_KEYS[customFieldType];
const [customField, setCustomField] = useState(member?.[customFieldKey ?? '']);
const customFieldText = translate(`workspace.common.${customFieldType}`);
const goBack = () => Navigation.goBack(ROUTES.WORKSPACE_MEMBER_DETAILS.getRoute(params.policyID, accountID));

return (
<ScreenWrapper
testID="MembersCustomFieldsPage"
shouldEnableMaxHeight
>
<HeaderWithBackButton
title={customFieldText}
onBackButtonPress={goBack}
/>
<View style={[styles.ph5, styles.pb5]}>
<Text>{translate('workspace.common.customFieldHint')}</Text>
</View>
<FormProvider
formID={ONYXKEYS.FORMS.WORKSPACE_CUSTOM_FIELD_FORM}
style={[styles.flexGrow1, styles.ph5]}
enabledWhenOffline
submitButtonText={translate('common.save')}
onSubmit={() => {
updateCustomField(params.policyID, memberLogin, customFieldType, customField ?? '');
goBack();
}}
>
<InputWrapper
autoFocus
InputComponent={TextInput}
label={customFieldText}
role={CONST.ROLE.PRESENTATION}
inputID="customField"
value={customField}
onChangeText={setCustomField}
/>
</FormProvider>
</ScreenWrapper>
);
}

MembersCustomFieldsPage.displayName = 'MembersCustomFieldsPage';

export default withPolicyAndFullscreenLoading(MembersCustomFieldsPage);
1 change: 1 addition & 0 deletions src/pages/workspace/withPolicy.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ type PolicyRouteName =
| typeof SCREENS.WORKSPACE.WORKFLOWS_AUTO_REPORTING_MONTHLY_OFFSET
| typeof SCREENS.WORKSPACE.WORKFLOWS_AUTO_REPORTING_FREQUENCY
| typeof SCREENS.WORKSPACE.MEMBER_DETAILS
| typeof SCREENS.WORKSPACE.CUSTOM_FIELDS
| typeof SCREENS.WORKSPACE.MEMBER_NEW_CARD
| typeof SCREENS.WORKSPACE.INVOICES
| typeof SCREENS.WORKSPACE.OWNER_CHANGE_CHECK
Expand Down
18 changes: 18 additions & 0 deletions src/types/form/WorkspaceCustomFieldsForm.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import type {ValueOf} from 'type-fest';
import type Form from './Form';

const INPUT_IDS = {
CUSTOM_FIELD: 'customField',
} as const;

type InputID = ValueOf<typeof INPUT_IDS>;

type WorkspaceCustomFieldsForm = Form<
InputID,
{
[INPUT_IDS.CUSTOM_FIELD]: string;
}
>;

export type {WorkspaceCustomFieldsForm};
export default INPUT_IDS;
1 change: 1 addition & 0 deletions src/types/form/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ export type {WorkspaceCategoryForm} from './WorkspaceCategoryForm';
export type {WorkspaceSettingsForm} from './WorkspaceSettingsForm';
export type {ReportPhysicalCardForm} from './ReportPhysicalCardForm';
export type {WorkspaceDescriptionForm} from './WorkspaceDescriptionForm';
export type {WorkspaceCustomFieldsForm} from './WorkspaceCustomFieldsForm';
export type {AdditionalDetailStepForm} from './AdditionalDetailStepForm';
export type {PolicyTagNameForm} from './PolicyTagNameForm';
export type {WorkspaceTagForm} from './WorkspaceTagForm';
Expand Down
Loading
Loading