diff --git a/admin/src/collections/PartnerOrganisations.ts b/admin/src/collections/PartnerOrganisations.ts index 8ea2ca81a..e4c2a01c1 100644 --- a/admin/src/collections/PartnerOrganisations.ts +++ b/admin/src/collections/PartnerOrganisations.ts @@ -16,12 +16,19 @@ export const buildPartnerOrganisationsCollection = () => { properties: buildProperties({ name: { dataType: 'string', + name: 'Org Name', }, contactName: { dataType: 'string', + name: 'Contact Person', }, contactNumber: { dataType: 'string', + name: 'Contact Number', + }, + communitySize: { + dataType: 'number', + name: 'Community Size', }, }), }); diff --git a/functions/src/firebase.ts b/functions/src/firebase.ts index 55bf6f2fc..9c420e49a 100644 --- a/functions/src/firebase.ts +++ b/functions/src/firebase.ts @@ -17,6 +17,7 @@ export async function initializeGlobalTestData(projectId?: string) { name: 'Aurora', contactName: 'Contact Person', contactNumber: '002020203020', + communitySize: 100, }); // exchange rate entry for April 15, 2023 diff --git a/shared/src/types/partner-organisation.ts b/shared/src/types/partner-organisation.ts index 9db8c1e61..234ed2244 100644 --- a/shared/src/types/partner-organisation.ts +++ b/shared/src/types/partner-organisation.ts @@ -4,4 +4,5 @@ export type PartnerOrganisation = { name: string; contactName: string; contactNumber: string; + communitySize: number; };