├── .devops ├── dev-CD.yml └── sit-CD.yml ├── .dockerignore ├── .env.dist ├── .eslintignore ├── .eslintrc ├── .github ├── .githooks │ ├── pre-commit │ ├── pre-push │ └── prepare-commit-msg ├── pull_request_template.md └── workflows │ ├── ci.yml │ ├── codeql-analysis.yml │ ├── deploy.yml │ ├── docker-package.yml │ ├── manual-deployment.yml │ ├── release.yml │ ├── scheduled-deployment-prod.yml │ ├── scheduled-deployment.yml │ └── scheduled-docker-image.yml ├── .gitignore ├── .prettierrc ├── .scripts └── check-i18n.js ├── .vscode ├── extensions.json └── settings.json ├── CHANGELOG.md ├── CHANGELOG ├── CHANGELOG_alpha.md ├── CHANGELOG_beta.md └── CHANGELOG_next.md ├── CI └── deploy.sh ├── Dockerfile ├── LICENSE ├── README.md ├── TODO.md ├── __tests__ ├── helpers │ └── database-helpers.ts ├── old │ ├── authentication.setup.ts │ ├── download │ │ └── index.test-tbd.ts │ ├── global.setup.ts │ ├── integration.test.ts │ ├── jest.setup.ts │ ├── models │ │ ├── aggregation.test.ts │ │ ├── apiConfiguration.test.ts │ │ ├── application.test.ts │ │ ├── channel.test.ts │ │ ├── client.test.ts │ │ ├── dashboard.test.ts │ │ ├── distributionList.test.ts │ │ ├── form.test.ts │ │ ├── group.test.ts │ │ ├── layer.test.ts │ │ ├── layout.test.ts │ │ ├── notification.test.ts │ │ ├── page.test.ts │ │ ├── permission.test.ts │ │ ├── positionAttribute.test.ts │ │ ├── positionAttributeCategory.test.ts │ │ ├── pullJob.test.ts │ │ ├── record.test.ts │ │ ├── referenceData.test.ts │ │ ├── resource.test.ts │ │ ├── role.test.ts │ │ ├── step.test.ts │ │ ├── template.test.ts │ │ ├── user.test.ts │ │ ├── version.test.ts │ │ └── workflow.test.ts │ ├── schema │ │ ├── mutation │ │ │ ├── addAggregation.test.ts │ │ │ ├── addApiConfiguration.test.ts │ │ │ ├── addDashboard.test.ts │ │ │ ├── addDistributionList.test.ts │ │ │ ├── addForm.test.ts │ │ │ ├── addGroup.test.ts │ │ │ ├── addLayer.test.ts │ │ │ ├── addLayout.test.ts │ │ │ ├── addPage.test.ts │ │ │ ├── addPositionAttribute.test.ts │ │ │ ├── addPositionAttributeCategory.test.ts │ │ │ └── editLayer.test.ts │ │ └── query │ │ │ ├── apiConfiguration.test.ts │ │ │ ├── apiConfigurations.test.ts │ │ │ ├── application.test.ts │ │ │ ├── applications.test.ts │ │ │ ├── channels.test.ts │ │ │ ├── dashboard.test.ts │ │ │ ├── dashboards.test.ts │ │ │ ├── form.test.ts │ │ │ ├── forms.test.ts │ │ │ ├── group.test.ts │ │ │ ├── groups.test.ts │ │ │ ├── layer.test.ts │ │ │ ├── layers.test.ts │ │ │ ├── me.test.ts │ │ │ ├── notifications.test.ts │ │ │ ├── page.test.ts │ │ │ ├── pages.test.ts │ │ │ ├── pullJob.test.ts │ │ │ ├── record.test.ts │ │ │ ├── recordHistory.test.ts │ │ │ ├── records.test.ts │ │ │ ├── referenceData.test.ts │ │ │ ├── referenceDatas.test.ts │ │ │ ├── resource.test.ts │ │ │ ├── resources.test.ts │ │ │ ├── role.test.ts │ │ │ ├── roles.test.ts │ │ │ ├── step.test.ts │ │ │ ├── steps.test.ts │ │ │ ├── user.test.ts │ │ │ ├── users.test.ts │ │ │ ├── workflow.test.ts │ │ │ └── workflows.test.ts │ ├── server.setup.ts │ ├── server │ │ └── middlewares │ │ │ ├── cors.test.ts │ │ │ └── rateLimit.test.ts │ ├── services │ │ └── page.service.test.ts │ └── utils │ │ ├── server │ │ ├── __snapshots__ │ │ │ └── checkConfig.test.ts.snap │ │ └── checkConfig.test.ts │ │ └── validators │ │ ├── validateApi.test.ts │ │ ├── validateEmail.test.ts │ │ └── validateName.test.ts └── unit-tests │ ├── routes │ └── activity │ │ ├── activity.controller.spec.ts │ │ └── activity.service.spec.ts │ ├── schema │ └── mutation │ │ ├── addApplication.mutation.spec.ts │ │ ├── addPage.mutation.spec.ts │ │ ├── addStep.mutation.spec.ts │ │ ├── editApplication.mutation.spec.ts │ │ ├── editDashboard.mutation.spec.ts │ │ └── editPage.mutation.spec.ts │ └── utils │ ├── form │ └── checkRecordValidation.spec.ts │ ├── models │ └── deletion.spec.ts │ ├── schema │ └── resolvers │ │ └── Query │ │ └── getSortOrder.spec.ts │ ├── user │ ├── fetchGroups.spec.ts │ └── getAutoAssignedRoles.spec.ts │ └── validators │ ├── validateApi.spec.ts │ └── validateName.spec.ts ├── config ├── custom-environment-variables.js ├── default.js ├── oort.js ├── test.js ├── who-dev.js ├── who-prod.js ├── who-test.js └── who.js ├── docker-compose.dist.yml ├── docker-compose.test.yml ├── docker-compose.yml ├── exclude-list.txt ├── jest.config.ts ├── migrations ├── 1663751971645-init.ts ├── 1663763614173-set-missing-timestamps.ts ├── 1663832104713-remove-standalone-forms.ts ├── 1663832321292-generate-layouts.ts ├── 1663832564479-generate-aggregations.ts ├── 1663832608220-generate-graphqltype-names.ts ├── 1664441608216-placeholders.ts ├── 1666880011416-remove-dataset-from-grids.ts ├── 1667217028452-update-attach-to-record-actions.ts ├── 1669104825942-generate-templates.ts ├── 1669105270797-generate-distribution-lists.ts ├── 1669285812934-fix-attach-to-record.ts ├── 1669623288983-add-manage-custom-notifications-permission.ts ├── 1675953127117-convert-group-aggregations-to-arrays.ts ├── 1677015012121-update-reference-data-field-types.ts ├── 1678374386633-layerpermissions.ts ├── 1684107791320-convert-static-cards-to-text-widgets.ts ├── 1684161314765-add-manage-distribution-list-and-template-permissions.ts ├── 1684803344240-update-fields-permission-type.ts ├── 1687184194639-remove-old-forms.ts ├── 1688033668444-update-auto-modify-grid-actions.ts ├── 1690822866516-populate-records-with-related-documents.ts ├── 1700653450166-set-contextualfilter-to-dashboard-level.ts ├── 1707479406412-set-geographic-extent-as-array.ts ├── 1717667736486-add-download-records-permission.ts ├── 1738146929016-update-applications-distribution-lists.ts └── 1738155669737-update-applications-email-templates.ts ├── package.json ├── rabbitmq └── enabled_plugins ├── release.config.js ├── setup-hooks.sh ├── src ├── abstractions │ ├── api-error.ts │ └── base.controller.ts ├── assets │ └── emails │ │ ├── app-invitation │ │ ├── html.pug │ │ └── subject.pug │ │ ├── create-account-to-app │ │ ├── html.pug │ │ └── subject.pug │ │ ├── create-account │ │ ├── html.pug │ │ └── subject.pug │ │ └── style.css ├── const │ ├── aggregation.ts │ ├── calculatedFields.ts │ ├── channels.ts │ ├── defaultRecordFields.ts │ ├── enumTypes.ts │ ├── fieldTypes.ts │ ├── permissions.ts │ ├── placeholders.ts │ └── protectedNames.ts ├── i18n │ ├── en.json │ └── test.json ├── index.ts ├── migrations │ ├── database.helper.ts │ ├── index.ts │ ├── stateStore.ts │ ├── template.ts │ └── ts-compiler.js ├── models │ ├── actionButton.model.ts │ ├── activityLog.model.ts │ ├── aggregation.model.ts │ ├── apiConfiguration.model.ts │ ├── application.model.ts │ ├── channel.model.ts │ ├── client.model.ts │ ├── customNotification.model.ts │ ├── customTemplate.model.ts │ ├── dashboard.model.ts │ ├── distributionList.model.ts │ ├── draftRecord.model.ts │ ├── emailDistributionList.model.ts │ ├── emailNotification.model.ts │ ├── form.model.ts │ ├── group.model.ts │ ├── history.model.ts │ ├── index.ts │ ├── layer.model.ts │ ├── layout.model.ts │ ├── migration.model.ts │ ├── notification.model.ts │ ├── page.model.ts │ ├── permission.model.ts │ ├── positionAttribute.model.ts │ ├── positionAttributeCategory.model.ts │ ├── pullJob.model.ts │ ├── record.model.ts │ ├── referenceData.model.ts │ ├── resource.model.ts │ ├── role.model.ts │ ├── step.model.ts │ ├── template.model.ts │ ├── user.model.ts │ ├── version.model.ts │ └── workflow.model.ts ├── oort.config.ts ├── routes │ ├── activity │ │ ├── activity.controller.ts │ │ └── activity.service.ts │ ├── download │ │ └── index.ts │ ├── email │ │ └── index.ts │ ├── file │ │ └── file.controller.ts │ ├── gis │ │ └── index.ts │ ├── index.ts │ ├── notification │ │ └── index.ts │ ├── permissions │ │ └── index.ts │ ├── proxy │ │ └── index.ts │ ├── roles │ │ └── index.ts │ ├── style │ │ └── index.ts │ ├── summarycards │ │ └── index.ts │ └── upload │ │ └── index.ts ├── schema │ ├── index.ts │ ├── inputs │ │ ├── aggregation.input.ts │ │ ├── button-action.input.ts │ │ ├── customNotification.input.ts │ │ ├── dashboard-filter.input.ts │ │ ├── distributionList.input.ts │ │ ├── emailNotification.input.ts │ │ ├── index.ts │ │ ├── layer.input.ts │ │ ├── layout.input.ts │ │ ├── pageContext.input.ts │ │ ├── position-attribute.input.ts │ │ ├── template.input.ts │ │ ├── user-profile.input.ts │ │ └── user.input.ts │ ├── mutation │ │ ├── addAggregation.mutation.ts │ │ ├── addApiConfiguration.mutation.ts │ │ ├── addApplication.mutation.ts │ │ ├── addChannel.mutation.ts │ │ ├── addCustomNotification.mutation.ts │ │ ├── addCustomTemplate.mutation.ts │ │ ├── addDashboard.mutation.ts │ │ ├── addDashboardTemplate.mutation.ts │ │ ├── addDistributionList.mutation.ts │ │ ├── addDraftRecord.mutation.ts │ │ ├── addEmailDistributionList.mutation.ts │ │ ├── addEmailNotification.mutation.ts │ │ ├── addEmailTemplate.mutation.ts │ │ ├── addForm.mutation.ts │ │ ├── addGroup.mutation.ts │ │ ├── addLayer.mutation.ts │ │ ├── addLayout.mutation.ts │ │ ├── addPage.mutation.ts │ │ ├── addPositionAttribute.mutation.ts │ │ ├── addPositionAttributeCategory.mutation.ts │ │ ├── addPullJob.mutation.ts │ │ ├── addRecord.mutation.ts │ │ ├── addReferenceData.mutation.ts │ │ ├── addRole.mutation.ts │ │ ├── addRoleToUsers.mutation.ts │ │ ├── addStep.mutation.ts │ │ ├── addSubscription.mutation.ts │ │ ├── addUsers.mutation.ts │ │ ├── addWorkflow.mutation.ts │ │ ├── convertRecord.mutation.ts │ │ ├── deleteAggregation.mutation.ts │ │ ├── deleteApiConfiguration.mutation.ts │ │ ├── deleteApplication.mutation.ts │ │ ├── deleteChannel.mutation.ts │ │ ├── deleteCustomNotification.mutation.ts │ │ ├── deleteDashboard.mutation.ts │ │ ├── deleteDashboardTemplates.mutation.ts │ │ ├── deleteDistributionList.mutation.ts │ │ ├── deleteDraftRecord.mutation.ts │ │ ├── deleteEmailDistributionList.mutation.ts │ │ ├── deleteEmailNotification.mutation.ts │ │ ├── deleteForm.mutation.ts │ │ ├── deleteGroup.mutation.ts │ │ ├── deleteLayer.mutation.ts │ │ ├── deleteLayout.mutation.ts │ │ ├── deletePage.mutation.ts │ │ ├── deletePositionAttributeCategory.mutation.ts │ │ ├── deletePullJob.mutation.ts │ │ ├── deleteRecord.mutation.ts │ │ ├── deleteRecords.mutation.ts │ │ ├── deleteReferenceData.mutation.ts │ │ ├── deleteResource.mutation.ts │ │ ├── deleteRole.mutation.ts │ │ ├── deleteStep.mutation.ts │ │ ├── deleteSubscription.mutation.ts │ │ ├── deleteTemplate.mutation.ts │ │ ├── deleteUsers.mutation.ts │ │ ├── deleteUsersFromApplication.mutation.ts │ │ ├── deleteWorkflow.mutation.ts │ │ ├── duplicateApplication.mutation.ts │ │ ├── duplicatePage.mutation.ts │ │ ├── editAggregation.mutation.ts │ │ ├── editApiConfiguration.mutation.ts │ │ ├── editApplication.mutation.ts │ │ ├── editChannel.mutation.ts │ │ ├── editCustomNotification.mutation.ts │ │ ├── editCustomTemplate.mutation.ts │ │ ├── editDashboard.mutation.ts │ │ ├── editDistributionList.mutation.ts │ │ ├── editDraftRecord.mutation.ts │ │ ├── editEmailDistributionList.mutation.ts │ │ ├── editEmailNotification.mutation.ts │ │ ├── editForm.mutation.ts │ │ ├── editLayer.mutation.ts │ │ ├── editLayout.mutation.ts │ │ ├── editPage.mutation.ts │ │ ├── editPageContext.mutation.ts │ │ ├── editPositionAttributeCategory.mutation.ts │ │ ├── editPullJob.mutation.ts │ │ ├── editRecord.mutation.ts │ │ ├── editRecords.mutation.ts │ │ ├── editReferenceData.mutation.ts │ │ ├── editResource.mutation.ts │ │ ├── editRole.mutation.ts │ │ ├── editStep.mutation.ts │ │ ├── editSubscription.mutation.ts │ │ ├── editTemplate.mutation.ts │ │ ├── editUser.mutation.ts │ │ ├── editUserProfile.mutation.ts │ │ ├── editWorkflow.mutation.ts │ │ ├── fetchGroups.mutation.ts │ │ ├── index.ts │ │ ├── publish.mutation.ts │ │ ├── publishNotification.mutation.ts │ │ ├── restorePage.mutation.ts │ │ ├── restoreRecord.mutation.ts │ │ ├── seeNotification.mutation.ts │ │ ├── seeNotifications.mutation.ts │ │ └── toggleApplicationLock.mutation.ts │ ├── query │ │ ├── apiConfiguration.query.ts │ │ ├── apiConfigurations.query.ts │ │ ├── application.query.ts │ │ ├── applications.query.ts │ │ ├── channels.query.ts │ │ ├── customTemplates.query.ts │ │ ├── dashboard.query.ts │ │ ├── dashboards.query.ts │ │ ├── draftRecords.query.ts │ │ ├── emailDistributionList.query.ts │ │ ├── emailNotification.query.ts │ │ ├── emailNotifications.query.ts │ │ ├── form.query.ts │ │ ├── forms.query.ts │ │ ├── group.query.ts │ │ ├── groups.query.ts │ │ ├── index.ts │ │ ├── layer.query.ts │ │ ├── layers.query.ts │ │ ├── me.query.ts │ │ ├── notifications.query.ts │ │ ├── page.query.ts │ │ ├── pages.query.ts │ │ ├── permissions.query.ts │ │ ├── positionAttributes.query.ts │ │ ├── pullJobs.query.ts │ │ ├── record.query.ts │ │ ├── recordHistory.query.ts │ │ ├── records.query.ts │ │ ├── recordsAggregation.query.ts │ │ ├── referenceData.query.ts │ │ ├── referenceDataAggregation.query.ts │ │ ├── referenceDatas.query.ts │ │ ├── resource.query.ts │ │ ├── resources.query.ts │ │ ├── role.query.ts │ │ ├── roles.query.ts │ │ ├── rolesFromApplications.query.ts │ │ ├── step.query.ts │ │ ├── steps.query.ts │ │ ├── types.query.ts │ │ ├── user.query.ts │ │ ├── users.query.ts │ │ ├── workflow.query.ts │ │ └── workflows.query.ts │ ├── shared │ │ ├── auth-check.util.ts │ │ └── index.ts │ ├── subscription │ │ ├── applicationEdited.subscription.ts │ │ ├── applicationUnlocked.subscription.ts │ │ ├── index.ts │ │ ├── notification.subscription.ts │ │ └── recordAdded.subscription.ts │ └── types │ │ ├── access.type.ts │ │ ├── aggregation.type.ts │ │ ├── apiConfiguration.type.ts │ │ ├── application.type.ts │ │ ├── channel.type.ts │ │ ├── customNotification.type.ts │ │ ├── customTemplate.type.ts │ │ ├── dashboard.type.ts │ │ ├── dataset.type.ts │ │ ├── distributionList.type.ts │ │ ├── draftRecord.type.ts │ │ ├── emailDistribution.type.ts │ │ ├── emailNotification.type.ts │ │ ├── form.type.ts │ │ ├── geospatial.type.ts │ │ ├── group.type.ts │ │ ├── historyVersion.type.ts │ │ ├── index.ts │ │ ├── layer.type.ts │ │ ├── layout.type.ts │ │ ├── metadata.type.ts │ │ ├── notification.type.ts │ │ ├── page.type.ts │ │ ├── pagination.type.ts │ │ ├── permission.type.ts │ │ ├── positionAttribute.type.ts │ │ ├── positionAttributeCategory.type.ts │ │ ├── pullJob.type.ts │ │ ├── record.type.ts │ │ ├── referenceData.type.ts │ │ ├── resource.type.ts │ │ ├── role.type.ts │ │ ├── step.type.ts │ │ ├── subscription.type.ts │ │ ├── template.type.ts │ │ ├── user.type.ts │ │ ├── version.type.ts │ │ └── workflow.type.ts ├── security │ ├── defineUserAbility.ts │ ├── extendAbilityForApplication.ts │ ├── extendAbilityForContent.ts │ ├── extendAbilityForPage.ts │ ├── extendAbilityForRecords.ts │ └── extendAbilityForStep.ts ├── server │ ├── EIOSOwnernshipMapping.ts │ ├── apollo │ │ ├── context.ts │ │ ├── dataSources.ts │ │ ├── onConnect.ts │ │ └── queries │ │ │ └── introspection.query.ts │ ├── common-services.ts │ ├── customNotificationScheduler.ts │ ├── database.ts │ ├── index.ts │ ├── middlewares │ │ ├── auth.ts │ │ ├── cors.ts │ │ ├── graphql.ts │ │ ├── index.ts │ │ ├── rateLimit.ts │ │ ├── rest.ts │ │ └── winston.ts │ ├── pubsub.ts │ ├── pubsubSafe.ts │ ├── pullJobScheduler.ts │ ├── redis.ts │ └── subscriberSafe.ts ├── services │ ├── form.service.ts │ ├── logger.service.ts │ └── page.service.ts ├── setup │ ├── clearLayouts.ts │ └── init.ts ├── types │ ├── filter.ts │ ├── index.ts │ ├── permission.ts │ └── route-definition.ts └── utils │ ├── aggregation │ ├── buildCalculatedFieldPipeline.ts │ ├── buildPipeline.ts │ ├── buildReferenceDataAggregation.ts │ ├── expressionFromString.ts │ └── setDisplayText.ts │ ├── context │ ├── getContextData.ts │ └── getNewDashboardName.ts │ ├── date │ ├── getICULocale.ts │ └── getTimeWithTimezone.ts │ ├── email │ ├── gridEmailBuilder.ts │ ├── index.ts │ └── sendEmail.ts │ ├── files │ ├── copyFolder.ts │ ├── csvBuilder.ts │ ├── deleteFolder.ts │ ├── downloadFile.ts │ ├── extractGridData.ts │ ├── fileBuilder.ts │ ├── format.helper.ts │ ├── getColumns.ts │ ├── getColumnsFromMeta.ts │ ├── getRows.ts │ ├── getRowsFromMeta.ts │ ├── getUploadColumns.ts │ ├── historyBuilder.ts │ ├── index.ts │ ├── loadRow.ts │ ├── resourceExporter.ts │ ├── templateBuilder.ts │ ├── uploadFile.ts │ └── xlsBuilder.ts │ ├── filter │ ├── getDateForMongo.ts │ ├── getFilter.ts │ ├── getFormFilter.ts │ ├── getFormPermissionFilter.ts │ ├── getTimeForMongo.ts │ └── index.ts │ ├── form │ ├── addField.ts │ ├── checkDefaultFields.ts │ ├── checkRecordExpressions.ts │ ├── checkRecordTriggers.ts │ ├── checkRecordValidation.ts │ ├── extractFields.ts │ ├── findDuplicateFields.ts │ ├── getAccessibleFields.ts │ ├── getDisplayText.ts │ ├── getFieldType.ts │ ├── getNextId.ts │ ├── getNextQuestion.ts │ ├── getOwnership.ts │ ├── getParentQuestion.ts │ ├── getPreviousQuestion.ts │ ├── getQuestion.ts │ ├── getQuestionPosition.ts │ ├── index.ts │ ├── metadata.helper.ts │ ├── removeField.ts │ ├── replaceField.ts │ └── transformRecord.ts │ ├── geojson │ └── generateGeoJson.ts │ ├── gis │ └── getCountryPolygons.ts │ ├── history │ ├── index.ts │ └── recordHistory.ts │ ├── models │ └── deletion.ts │ ├── notification │ ├── blobStorage.ts │ └── util.ts │ ├── proxy │ ├── authManagement.ts │ ├── getChoices.ts │ └── index.ts │ ├── query │ └── queryBuilder.ts │ ├── referenceData │ └── referenceDataFilter.util.ts │ ├── schema │ ├── buildSchema.ts │ ├── buildTypes.ts │ ├── errors │ │ └── checkPageSize.util.ts │ ├── getStructures.ts │ ├── introspection │ │ ├── getConnectionType.ts │ │ ├── getFieldName.ts │ │ ├── getFieldType.ts │ │ ├── getFields.ts │ │ ├── getMetaTypes.ts │ │ ├── getReversedFields.ts │ │ ├── getSchema.ts │ │ ├── getTypeFromKey.ts │ │ ├── getTypes.ts │ │ └── isRelationshipField.ts │ └── resolvers │ │ ├── Entity │ │ ├── getReferenceDataResolver.ts │ │ └── index.ts │ │ ├── Meta │ │ ├── getMetaCheckboxResolver.ts │ │ ├── getMetaDropdownResolver.ts │ │ ├── getMetaFieldResolver.ts │ │ ├── getMetaOwnerResolver.ts │ │ ├── getMetaRadiogroupResolver.ts │ │ ├── getMetaReferenceDataResolver.ts │ │ ├── getMetaTagboxResolver.ts │ │ ├── getMetaUsersResolver.ts │ │ └── index.ts │ │ ├── Query │ │ ├── all.ts │ │ ├── getFilter.ts │ │ ├── getSearchFilter.ts │ │ ├── getSortAggregation.ts │ │ ├── getSortField.ts │ │ ├── getSortOrder.ts │ │ ├── getStyle.ts │ │ ├── meta.ts │ │ └── single.ts │ │ └── index.ts │ ├── server │ └── checkConfig.util.ts │ ├── user │ ├── fetchGroups.ts │ ├── getAutoAssignedRoles.ts │ ├── index.ts │ ├── sendUserInvitation.ts │ ├── updateUserAttributes.ts │ ├── updateUserGroups.ts │ └── userManagement.ts │ └── validators │ ├── index.ts │ ├── validateApi.ts │ └── validateName.ts ├── tsconfig.build.json └── tsconfig.json /.devops/dev-CD.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/.devops/dev-CD.yml -------------------------------------------------------------------------------- /.devops/sit-CD.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/.devops/sit-CD.yml -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/.env.dist -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/.githooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/.github/.githooks/pre-commit -------------------------------------------------------------------------------- /.github/.githooks/pre-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/.github/.githooks/pre-push -------------------------------------------------------------------------------- /.github/.githooks/prepare-commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/.github/.githooks/prepare-commit-msg -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/docker-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/.github/workflows/docker-package.yml -------------------------------------------------------------------------------- /.github/workflows/manual-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/.github/workflows/manual-deployment.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/scheduled-deployment-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/.github/workflows/scheduled-deployment-prod.yml -------------------------------------------------------------------------------- /.github/workflows/scheduled-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/.github/workflows/scheduled-deployment.yml -------------------------------------------------------------------------------- /.github/workflows/scheduled-docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/.github/workflows/scheduled-docker-image.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/.prettierrc -------------------------------------------------------------------------------- /.scripts/check-i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/.scripts/check-i18n.js -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CHANGELOG/CHANGELOG_alpha.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/CHANGELOG/CHANGELOG_alpha.md -------------------------------------------------------------------------------- /CHANGELOG/CHANGELOG_beta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/CHANGELOG/CHANGELOG_beta.md -------------------------------------------------------------------------------- /CHANGELOG/CHANGELOG_next.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/CHANGELOG/CHANGELOG_next.md -------------------------------------------------------------------------------- /CI/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/CI/deploy.sh -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/TODO.md -------------------------------------------------------------------------------- /__tests__/helpers/database-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/helpers/database-helpers.ts -------------------------------------------------------------------------------- /__tests__/old/authentication.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/authentication.setup.ts -------------------------------------------------------------------------------- /__tests__/old/download/index.test-tbd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/download/index.test-tbd.ts -------------------------------------------------------------------------------- /__tests__/old/global.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/global.setup.ts -------------------------------------------------------------------------------- /__tests__/old/integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/integration.test.ts -------------------------------------------------------------------------------- /__tests__/old/jest.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/jest.setup.ts -------------------------------------------------------------------------------- /__tests__/old/models/aggregation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/models/aggregation.test.ts -------------------------------------------------------------------------------- /__tests__/old/models/apiConfiguration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/models/apiConfiguration.test.ts -------------------------------------------------------------------------------- /__tests__/old/models/application.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/models/application.test.ts -------------------------------------------------------------------------------- /__tests__/old/models/channel.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/models/channel.test.ts -------------------------------------------------------------------------------- /__tests__/old/models/client.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/models/client.test.ts -------------------------------------------------------------------------------- /__tests__/old/models/dashboard.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/models/dashboard.test.ts -------------------------------------------------------------------------------- /__tests__/old/models/distributionList.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/models/distributionList.test.ts -------------------------------------------------------------------------------- /__tests__/old/models/form.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/models/form.test.ts -------------------------------------------------------------------------------- /__tests__/old/models/group.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/models/group.test.ts -------------------------------------------------------------------------------- /__tests__/old/models/layer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/models/layer.test.ts -------------------------------------------------------------------------------- /__tests__/old/models/layout.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/models/layout.test.ts -------------------------------------------------------------------------------- /__tests__/old/models/notification.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/models/notification.test.ts -------------------------------------------------------------------------------- /__tests__/old/models/page.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/models/page.test.ts -------------------------------------------------------------------------------- /__tests__/old/models/permission.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/models/permission.test.ts -------------------------------------------------------------------------------- /__tests__/old/models/positionAttribute.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/models/positionAttribute.test.ts -------------------------------------------------------------------------------- /__tests__/old/models/positionAttributeCategory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/models/positionAttributeCategory.test.ts -------------------------------------------------------------------------------- /__tests__/old/models/pullJob.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/models/pullJob.test.ts -------------------------------------------------------------------------------- /__tests__/old/models/record.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/models/record.test.ts -------------------------------------------------------------------------------- /__tests__/old/models/referenceData.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/models/referenceData.test.ts -------------------------------------------------------------------------------- /__tests__/old/models/resource.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/models/resource.test.ts -------------------------------------------------------------------------------- /__tests__/old/models/role.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/models/role.test.ts -------------------------------------------------------------------------------- /__tests__/old/models/step.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/models/step.test.ts -------------------------------------------------------------------------------- /__tests__/old/models/template.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/models/template.test.ts -------------------------------------------------------------------------------- /__tests__/old/models/user.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/models/user.test.ts -------------------------------------------------------------------------------- /__tests__/old/models/version.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/models/version.test.ts -------------------------------------------------------------------------------- /__tests__/old/models/workflow.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/models/workflow.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/mutation/addAggregation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/mutation/addAggregation.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/mutation/addApiConfiguration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/mutation/addApiConfiguration.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/mutation/addDashboard.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/mutation/addDashboard.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/mutation/addDistributionList.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/mutation/addDistributionList.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/mutation/addForm.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/mutation/addForm.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/mutation/addGroup.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/mutation/addGroup.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/mutation/addLayer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/mutation/addLayer.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/mutation/addLayout.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/mutation/addLayout.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/mutation/addPage.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/mutation/addPage.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/mutation/addPositionAttribute.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/mutation/addPositionAttribute.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/mutation/addPositionAttributeCategory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/mutation/addPositionAttributeCategory.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/mutation/editLayer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/mutation/editLayer.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/query/apiConfiguration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/query/apiConfiguration.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/query/apiConfigurations.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/query/apiConfigurations.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/query/application.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/query/application.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/query/applications.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/query/applications.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/query/channels.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/query/channels.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/query/dashboard.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/query/dashboard.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/query/dashboards.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/query/dashboards.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/query/form.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/query/form.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/query/forms.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/query/forms.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/query/group.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/query/group.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/query/groups.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/query/groups.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/query/layer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/query/layer.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/query/layers.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/query/layers.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/query/me.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/query/me.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/query/notifications.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/query/notifications.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/query/page.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/query/page.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/query/pages.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/query/pages.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/query/pullJob.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/query/pullJob.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/query/record.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/query/record.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/query/recordHistory.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/query/recordHistory.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/query/records.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/query/records.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/query/referenceData.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/query/referenceData.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/query/referenceDatas.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/query/referenceDatas.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/query/resource.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/query/resource.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/query/resources.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/query/resources.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/query/role.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/query/role.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/query/roles.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/query/roles.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/query/step.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/query/step.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/query/steps.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/query/steps.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/query/user.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/query/user.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/query/users.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/query/users.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/query/workflow.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/query/workflow.test.ts -------------------------------------------------------------------------------- /__tests__/old/schema/query/workflows.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/schema/query/workflows.test.ts -------------------------------------------------------------------------------- /__tests__/old/server.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/server.setup.ts -------------------------------------------------------------------------------- /__tests__/old/server/middlewares/cors.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/server/middlewares/cors.test.ts -------------------------------------------------------------------------------- /__tests__/old/server/middlewares/rateLimit.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/server/middlewares/rateLimit.test.ts -------------------------------------------------------------------------------- /__tests__/old/services/page.service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/services/page.service.test.ts -------------------------------------------------------------------------------- /__tests__/old/utils/server/__snapshots__/checkConfig.test.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/utils/server/__snapshots__/checkConfig.test.ts.snap -------------------------------------------------------------------------------- /__tests__/old/utils/server/checkConfig.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/utils/server/checkConfig.test.ts -------------------------------------------------------------------------------- /__tests__/old/utils/validators/validateApi.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/utils/validators/validateApi.test.ts -------------------------------------------------------------------------------- /__tests__/old/utils/validators/validateEmail.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/utils/validators/validateEmail.test.ts -------------------------------------------------------------------------------- /__tests__/old/utils/validators/validateName.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/old/utils/validators/validateName.test.ts -------------------------------------------------------------------------------- /__tests__/unit-tests/routes/activity/activity.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/unit-tests/routes/activity/activity.controller.spec.ts -------------------------------------------------------------------------------- /__tests__/unit-tests/routes/activity/activity.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/unit-tests/routes/activity/activity.service.spec.ts -------------------------------------------------------------------------------- /__tests__/unit-tests/schema/mutation/addApplication.mutation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/unit-tests/schema/mutation/addApplication.mutation.spec.ts -------------------------------------------------------------------------------- /__tests__/unit-tests/schema/mutation/addPage.mutation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/unit-tests/schema/mutation/addPage.mutation.spec.ts -------------------------------------------------------------------------------- /__tests__/unit-tests/schema/mutation/addStep.mutation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/unit-tests/schema/mutation/addStep.mutation.spec.ts -------------------------------------------------------------------------------- /__tests__/unit-tests/schema/mutation/editApplication.mutation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/unit-tests/schema/mutation/editApplication.mutation.spec.ts -------------------------------------------------------------------------------- /__tests__/unit-tests/schema/mutation/editDashboard.mutation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/unit-tests/schema/mutation/editDashboard.mutation.spec.ts -------------------------------------------------------------------------------- /__tests__/unit-tests/schema/mutation/editPage.mutation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/unit-tests/schema/mutation/editPage.mutation.spec.ts -------------------------------------------------------------------------------- /__tests__/unit-tests/utils/form/checkRecordValidation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/unit-tests/utils/form/checkRecordValidation.spec.ts -------------------------------------------------------------------------------- /__tests__/unit-tests/utils/models/deletion.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/unit-tests/utils/models/deletion.spec.ts -------------------------------------------------------------------------------- /__tests__/unit-tests/utils/schema/resolvers/Query/getSortOrder.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/unit-tests/utils/schema/resolvers/Query/getSortOrder.spec.ts -------------------------------------------------------------------------------- /__tests__/unit-tests/utils/user/fetchGroups.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/unit-tests/utils/user/fetchGroups.spec.ts -------------------------------------------------------------------------------- /__tests__/unit-tests/utils/user/getAutoAssignedRoles.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/unit-tests/utils/user/getAutoAssignedRoles.spec.ts -------------------------------------------------------------------------------- /__tests__/unit-tests/utils/validators/validateApi.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/unit-tests/utils/validators/validateApi.spec.ts -------------------------------------------------------------------------------- /__tests__/unit-tests/utils/validators/validateName.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/__tests__/unit-tests/utils/validators/validateName.spec.ts -------------------------------------------------------------------------------- /config/custom-environment-variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/config/custom-environment-variables.js -------------------------------------------------------------------------------- /config/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/config/default.js -------------------------------------------------------------------------------- /config/oort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/config/oort.js -------------------------------------------------------------------------------- /config/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/config/test.js -------------------------------------------------------------------------------- /config/who-dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/config/who-dev.js -------------------------------------------------------------------------------- /config/who-prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/config/who-prod.js -------------------------------------------------------------------------------- /config/who-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/config/who-test.js -------------------------------------------------------------------------------- /config/who.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/config/who.js -------------------------------------------------------------------------------- /docker-compose.dist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/docker-compose.dist.yml -------------------------------------------------------------------------------- /docker-compose.test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/docker-compose.test.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /exclude-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/exclude-list.txt -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/jest.config.ts -------------------------------------------------------------------------------- /migrations/1663751971645-init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/migrations/1663751971645-init.ts -------------------------------------------------------------------------------- /migrations/1663763614173-set-missing-timestamps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/migrations/1663763614173-set-missing-timestamps.ts -------------------------------------------------------------------------------- /migrations/1663832104713-remove-standalone-forms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/migrations/1663832104713-remove-standalone-forms.ts -------------------------------------------------------------------------------- /migrations/1663832321292-generate-layouts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/migrations/1663832321292-generate-layouts.ts -------------------------------------------------------------------------------- /migrations/1663832564479-generate-aggregations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/migrations/1663832564479-generate-aggregations.ts -------------------------------------------------------------------------------- /migrations/1663832608220-generate-graphqltype-names.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/migrations/1663832608220-generate-graphqltype-names.ts -------------------------------------------------------------------------------- /migrations/1664441608216-placeholders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/migrations/1664441608216-placeholders.ts -------------------------------------------------------------------------------- /migrations/1666880011416-remove-dataset-from-grids.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/migrations/1666880011416-remove-dataset-from-grids.ts -------------------------------------------------------------------------------- /migrations/1667217028452-update-attach-to-record-actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/migrations/1667217028452-update-attach-to-record-actions.ts -------------------------------------------------------------------------------- /migrations/1669104825942-generate-templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/migrations/1669104825942-generate-templates.ts -------------------------------------------------------------------------------- /migrations/1669105270797-generate-distribution-lists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/migrations/1669105270797-generate-distribution-lists.ts -------------------------------------------------------------------------------- /migrations/1669285812934-fix-attach-to-record.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/migrations/1669285812934-fix-attach-to-record.ts -------------------------------------------------------------------------------- /migrations/1669623288983-add-manage-custom-notifications-permission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/migrations/1669623288983-add-manage-custom-notifications-permission.ts -------------------------------------------------------------------------------- /migrations/1675953127117-convert-group-aggregations-to-arrays.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/migrations/1675953127117-convert-group-aggregations-to-arrays.ts -------------------------------------------------------------------------------- /migrations/1677015012121-update-reference-data-field-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/migrations/1677015012121-update-reference-data-field-types.ts -------------------------------------------------------------------------------- /migrations/1678374386633-layerpermissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/migrations/1678374386633-layerpermissions.ts -------------------------------------------------------------------------------- /migrations/1684107791320-convert-static-cards-to-text-widgets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/migrations/1684107791320-convert-static-cards-to-text-widgets.ts -------------------------------------------------------------------------------- /migrations/1684161314765-add-manage-distribution-list-and-template-permissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/migrations/1684161314765-add-manage-distribution-list-and-template-permissions.ts -------------------------------------------------------------------------------- /migrations/1684803344240-update-fields-permission-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/migrations/1684803344240-update-fields-permission-type.ts -------------------------------------------------------------------------------- /migrations/1687184194639-remove-old-forms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/migrations/1687184194639-remove-old-forms.ts -------------------------------------------------------------------------------- /migrations/1688033668444-update-auto-modify-grid-actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/migrations/1688033668444-update-auto-modify-grid-actions.ts -------------------------------------------------------------------------------- /migrations/1690822866516-populate-records-with-related-documents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/migrations/1690822866516-populate-records-with-related-documents.ts -------------------------------------------------------------------------------- /migrations/1700653450166-set-contextualfilter-to-dashboard-level.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/migrations/1700653450166-set-contextualfilter-to-dashboard-level.ts -------------------------------------------------------------------------------- /migrations/1707479406412-set-geographic-extent-as-array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/migrations/1707479406412-set-geographic-extent-as-array.ts -------------------------------------------------------------------------------- /migrations/1717667736486-add-download-records-permission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/migrations/1717667736486-add-download-records-permission.ts -------------------------------------------------------------------------------- /migrations/1738146929016-update-applications-distribution-lists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/migrations/1738146929016-update-applications-distribution-lists.ts -------------------------------------------------------------------------------- /migrations/1738155669737-update-applications-email-templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/migrations/1738155669737-update-applications-email-templates.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/package.json -------------------------------------------------------------------------------- /rabbitmq/enabled_plugins: -------------------------------------------------------------------------------- 1 | [rabbitmq_management]. -------------------------------------------------------------------------------- /release.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/release.config.js -------------------------------------------------------------------------------- /setup-hooks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/setup-hooks.sh -------------------------------------------------------------------------------- /src/abstractions/api-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/abstractions/api-error.ts -------------------------------------------------------------------------------- /src/abstractions/base.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/abstractions/base.controller.ts -------------------------------------------------------------------------------- /src/assets/emails/app-invitation/html.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/assets/emails/app-invitation/html.pug -------------------------------------------------------------------------------- /src/assets/emails/app-invitation/subject.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/assets/emails/app-invitation/subject.pug -------------------------------------------------------------------------------- /src/assets/emails/create-account-to-app/html.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/assets/emails/create-account-to-app/html.pug -------------------------------------------------------------------------------- /src/assets/emails/create-account-to-app/subject.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/assets/emails/create-account-to-app/subject.pug -------------------------------------------------------------------------------- /src/assets/emails/create-account/html.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/assets/emails/create-account/html.pug -------------------------------------------------------------------------------- /src/assets/emails/create-account/subject.pug: -------------------------------------------------------------------------------- 1 | = `[OORT] ${senderName} has invited you to join the Oort platform` -------------------------------------------------------------------------------- /src/assets/emails/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/assets/emails/style.css -------------------------------------------------------------------------------- /src/const/aggregation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/const/aggregation.ts -------------------------------------------------------------------------------- /src/const/calculatedFields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/const/calculatedFields.ts -------------------------------------------------------------------------------- /src/const/channels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/const/channels.ts -------------------------------------------------------------------------------- /src/const/defaultRecordFields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/const/defaultRecordFields.ts -------------------------------------------------------------------------------- /src/const/enumTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/const/enumTypes.ts -------------------------------------------------------------------------------- /src/const/fieldTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/const/fieldTypes.ts -------------------------------------------------------------------------------- /src/const/permissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/const/permissions.ts -------------------------------------------------------------------------------- /src/const/placeholders.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/const/placeholders.ts -------------------------------------------------------------------------------- /src/const/protectedNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/const/protectedNames.ts -------------------------------------------------------------------------------- /src/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/i18n/en.json -------------------------------------------------------------------------------- /src/i18n/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/i18n/test.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/migrations/database.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/migrations/database.helper.ts -------------------------------------------------------------------------------- /src/migrations/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/migrations/index.ts -------------------------------------------------------------------------------- /src/migrations/stateStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/migrations/stateStore.ts -------------------------------------------------------------------------------- /src/migrations/template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/migrations/template.ts -------------------------------------------------------------------------------- /src/migrations/ts-compiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/migrations/ts-compiler.js -------------------------------------------------------------------------------- /src/models/actionButton.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/models/actionButton.model.ts -------------------------------------------------------------------------------- /src/models/activityLog.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/models/activityLog.model.ts -------------------------------------------------------------------------------- /src/models/aggregation.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/models/aggregation.model.ts -------------------------------------------------------------------------------- /src/models/apiConfiguration.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/models/apiConfiguration.model.ts -------------------------------------------------------------------------------- /src/models/application.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/models/application.model.ts -------------------------------------------------------------------------------- /src/models/channel.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/models/channel.model.ts -------------------------------------------------------------------------------- /src/models/client.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/models/client.model.ts -------------------------------------------------------------------------------- /src/models/customNotification.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/models/customNotification.model.ts -------------------------------------------------------------------------------- /src/models/customTemplate.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/models/customTemplate.model.ts -------------------------------------------------------------------------------- /src/models/dashboard.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/models/dashboard.model.ts -------------------------------------------------------------------------------- /src/models/distributionList.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/models/distributionList.model.ts -------------------------------------------------------------------------------- /src/models/draftRecord.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/models/draftRecord.model.ts -------------------------------------------------------------------------------- /src/models/emailDistributionList.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/models/emailDistributionList.model.ts -------------------------------------------------------------------------------- /src/models/emailNotification.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/models/emailNotification.model.ts -------------------------------------------------------------------------------- /src/models/form.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/models/form.model.ts -------------------------------------------------------------------------------- /src/models/group.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/models/group.model.ts -------------------------------------------------------------------------------- /src/models/history.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/models/history.model.ts -------------------------------------------------------------------------------- /src/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/models/index.ts -------------------------------------------------------------------------------- /src/models/layer.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/models/layer.model.ts -------------------------------------------------------------------------------- /src/models/layout.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/models/layout.model.ts -------------------------------------------------------------------------------- /src/models/migration.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/models/migration.model.ts -------------------------------------------------------------------------------- /src/models/notification.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/models/notification.model.ts -------------------------------------------------------------------------------- /src/models/page.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/models/page.model.ts -------------------------------------------------------------------------------- /src/models/permission.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/models/permission.model.ts -------------------------------------------------------------------------------- /src/models/positionAttribute.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/models/positionAttribute.model.ts -------------------------------------------------------------------------------- /src/models/positionAttributeCategory.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/models/positionAttributeCategory.model.ts -------------------------------------------------------------------------------- /src/models/pullJob.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/models/pullJob.model.ts -------------------------------------------------------------------------------- /src/models/record.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/models/record.model.ts -------------------------------------------------------------------------------- /src/models/referenceData.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/models/referenceData.model.ts -------------------------------------------------------------------------------- /src/models/resource.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/models/resource.model.ts -------------------------------------------------------------------------------- /src/models/role.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/models/role.model.ts -------------------------------------------------------------------------------- /src/models/step.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/models/step.model.ts -------------------------------------------------------------------------------- /src/models/template.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/models/template.model.ts -------------------------------------------------------------------------------- /src/models/user.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/models/user.model.ts -------------------------------------------------------------------------------- /src/models/version.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/models/version.model.ts -------------------------------------------------------------------------------- /src/models/workflow.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/models/workflow.model.ts -------------------------------------------------------------------------------- /src/oort.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/oort.config.ts -------------------------------------------------------------------------------- /src/routes/activity/activity.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/routes/activity/activity.controller.ts -------------------------------------------------------------------------------- /src/routes/activity/activity.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/routes/activity/activity.service.ts -------------------------------------------------------------------------------- /src/routes/download/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/routes/download/index.ts -------------------------------------------------------------------------------- /src/routes/email/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/routes/email/index.ts -------------------------------------------------------------------------------- /src/routes/file/file.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/routes/file/file.controller.ts -------------------------------------------------------------------------------- /src/routes/gis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/routes/gis/index.ts -------------------------------------------------------------------------------- /src/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/routes/index.ts -------------------------------------------------------------------------------- /src/routes/notification/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/routes/notification/index.ts -------------------------------------------------------------------------------- /src/routes/permissions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/routes/permissions/index.ts -------------------------------------------------------------------------------- /src/routes/proxy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/routes/proxy/index.ts -------------------------------------------------------------------------------- /src/routes/roles/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/routes/roles/index.ts -------------------------------------------------------------------------------- /src/routes/style/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/routes/style/index.ts -------------------------------------------------------------------------------- /src/routes/summarycards/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/routes/summarycards/index.ts -------------------------------------------------------------------------------- /src/routes/upload/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/routes/upload/index.ts -------------------------------------------------------------------------------- /src/schema/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/index.ts -------------------------------------------------------------------------------- /src/schema/inputs/aggregation.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/inputs/aggregation.input.ts -------------------------------------------------------------------------------- /src/schema/inputs/button-action.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/inputs/button-action.input.ts -------------------------------------------------------------------------------- /src/schema/inputs/customNotification.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/inputs/customNotification.input.ts -------------------------------------------------------------------------------- /src/schema/inputs/dashboard-filter.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/inputs/dashboard-filter.input.ts -------------------------------------------------------------------------------- /src/schema/inputs/distributionList.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/inputs/distributionList.input.ts -------------------------------------------------------------------------------- /src/schema/inputs/emailNotification.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/inputs/emailNotification.input.ts -------------------------------------------------------------------------------- /src/schema/inputs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/inputs/index.ts -------------------------------------------------------------------------------- /src/schema/inputs/layer.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/inputs/layer.input.ts -------------------------------------------------------------------------------- /src/schema/inputs/layout.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/inputs/layout.input.ts -------------------------------------------------------------------------------- /src/schema/inputs/pageContext.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/inputs/pageContext.input.ts -------------------------------------------------------------------------------- /src/schema/inputs/position-attribute.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/inputs/position-attribute.input.ts -------------------------------------------------------------------------------- /src/schema/inputs/template.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/inputs/template.input.ts -------------------------------------------------------------------------------- /src/schema/inputs/user-profile.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/inputs/user-profile.input.ts -------------------------------------------------------------------------------- /src/schema/inputs/user.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/inputs/user.input.ts -------------------------------------------------------------------------------- /src/schema/mutation/addAggregation.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/addAggregation.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/addApiConfiguration.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/addApiConfiguration.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/addApplication.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/addApplication.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/addChannel.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/addChannel.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/addCustomNotification.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/addCustomNotification.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/addCustomTemplate.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/addCustomTemplate.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/addDashboard.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/addDashboard.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/addDashboardTemplate.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/addDashboardTemplate.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/addDistributionList.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/addDistributionList.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/addDraftRecord.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/addDraftRecord.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/addEmailDistributionList.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/addEmailDistributionList.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/addEmailNotification.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/addEmailNotification.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/addEmailTemplate.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/addEmailTemplate.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/addForm.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/addForm.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/addGroup.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/addGroup.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/addLayer.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/addLayer.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/addLayout.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/addLayout.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/addPage.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/addPage.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/addPositionAttribute.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/addPositionAttribute.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/addPositionAttributeCategory.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/addPositionAttributeCategory.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/addPullJob.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/addPullJob.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/addRecord.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/addRecord.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/addReferenceData.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/addReferenceData.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/addRole.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/addRole.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/addRoleToUsers.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/addRoleToUsers.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/addStep.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/addStep.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/addSubscription.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/addSubscription.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/addUsers.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/addUsers.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/addWorkflow.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/addWorkflow.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/convertRecord.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/convertRecord.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/deleteAggregation.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/deleteAggregation.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/deleteApiConfiguration.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/deleteApiConfiguration.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/deleteApplication.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/deleteApplication.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/deleteChannel.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/deleteChannel.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/deleteCustomNotification.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/deleteCustomNotification.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/deleteDashboard.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/deleteDashboard.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/deleteDashboardTemplates.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/deleteDashboardTemplates.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/deleteDistributionList.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/deleteDistributionList.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/deleteDraftRecord.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/deleteDraftRecord.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/deleteEmailDistributionList.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/deleteEmailDistributionList.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/deleteEmailNotification.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/deleteEmailNotification.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/deleteForm.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/deleteForm.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/deleteGroup.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/deleteGroup.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/deleteLayer.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/deleteLayer.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/deleteLayout.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/deleteLayout.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/deletePage.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/deletePage.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/deletePositionAttributeCategory.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/deletePositionAttributeCategory.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/deletePullJob.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/deletePullJob.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/deleteRecord.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/deleteRecord.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/deleteRecords.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/deleteRecords.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/deleteReferenceData.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/deleteReferenceData.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/deleteResource.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/deleteResource.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/deleteRole.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/deleteRole.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/deleteStep.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/deleteStep.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/deleteSubscription.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/deleteSubscription.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/deleteTemplate.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/deleteTemplate.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/deleteUsers.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/deleteUsers.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/deleteUsersFromApplication.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/deleteUsersFromApplication.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/deleteWorkflow.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/deleteWorkflow.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/duplicateApplication.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/duplicateApplication.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/duplicatePage.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/duplicatePage.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/editAggregation.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/editAggregation.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/editApiConfiguration.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/editApiConfiguration.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/editApplication.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/editApplication.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/editChannel.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/editChannel.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/editCustomNotification.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/editCustomNotification.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/editCustomTemplate.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/editCustomTemplate.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/editDashboard.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/editDashboard.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/editDistributionList.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/editDistributionList.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/editDraftRecord.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/editDraftRecord.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/editEmailDistributionList.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/editEmailDistributionList.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/editEmailNotification.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/editEmailNotification.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/editForm.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/editForm.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/editLayer.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/editLayer.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/editLayout.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/editLayout.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/editPage.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/editPage.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/editPageContext.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/editPageContext.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/editPositionAttributeCategory.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/editPositionAttributeCategory.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/editPullJob.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/editPullJob.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/editRecord.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/editRecord.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/editRecords.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/editRecords.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/editReferenceData.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/editReferenceData.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/editResource.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/editResource.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/editRole.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/editRole.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/editStep.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/editStep.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/editSubscription.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/editSubscription.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/editTemplate.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/editTemplate.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/editUser.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/editUser.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/editUserProfile.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/editUserProfile.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/editWorkflow.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/editWorkflow.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/fetchGroups.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/fetchGroups.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/index.ts -------------------------------------------------------------------------------- /src/schema/mutation/publish.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/publish.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/publishNotification.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/publishNotification.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/restorePage.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/restorePage.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/restoreRecord.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/restoreRecord.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/seeNotification.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/seeNotification.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/seeNotifications.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/seeNotifications.mutation.ts -------------------------------------------------------------------------------- /src/schema/mutation/toggleApplicationLock.mutation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/mutation/toggleApplicationLock.mutation.ts -------------------------------------------------------------------------------- /src/schema/query/apiConfiguration.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/apiConfiguration.query.ts -------------------------------------------------------------------------------- /src/schema/query/apiConfigurations.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/apiConfigurations.query.ts -------------------------------------------------------------------------------- /src/schema/query/application.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/application.query.ts -------------------------------------------------------------------------------- /src/schema/query/applications.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/applications.query.ts -------------------------------------------------------------------------------- /src/schema/query/channels.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/channels.query.ts -------------------------------------------------------------------------------- /src/schema/query/customTemplates.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/customTemplates.query.ts -------------------------------------------------------------------------------- /src/schema/query/dashboard.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/dashboard.query.ts -------------------------------------------------------------------------------- /src/schema/query/dashboards.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/dashboards.query.ts -------------------------------------------------------------------------------- /src/schema/query/draftRecords.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/draftRecords.query.ts -------------------------------------------------------------------------------- /src/schema/query/emailDistributionList.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/emailDistributionList.query.ts -------------------------------------------------------------------------------- /src/schema/query/emailNotification.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/emailNotification.query.ts -------------------------------------------------------------------------------- /src/schema/query/emailNotifications.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/emailNotifications.query.ts -------------------------------------------------------------------------------- /src/schema/query/form.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/form.query.ts -------------------------------------------------------------------------------- /src/schema/query/forms.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/forms.query.ts -------------------------------------------------------------------------------- /src/schema/query/group.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/group.query.ts -------------------------------------------------------------------------------- /src/schema/query/groups.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/groups.query.ts -------------------------------------------------------------------------------- /src/schema/query/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/index.ts -------------------------------------------------------------------------------- /src/schema/query/layer.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/layer.query.ts -------------------------------------------------------------------------------- /src/schema/query/layers.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/layers.query.ts -------------------------------------------------------------------------------- /src/schema/query/me.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/me.query.ts -------------------------------------------------------------------------------- /src/schema/query/notifications.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/notifications.query.ts -------------------------------------------------------------------------------- /src/schema/query/page.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/page.query.ts -------------------------------------------------------------------------------- /src/schema/query/pages.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/pages.query.ts -------------------------------------------------------------------------------- /src/schema/query/permissions.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/permissions.query.ts -------------------------------------------------------------------------------- /src/schema/query/positionAttributes.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/positionAttributes.query.ts -------------------------------------------------------------------------------- /src/schema/query/pullJobs.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/pullJobs.query.ts -------------------------------------------------------------------------------- /src/schema/query/record.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/record.query.ts -------------------------------------------------------------------------------- /src/schema/query/recordHistory.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/recordHistory.query.ts -------------------------------------------------------------------------------- /src/schema/query/records.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/records.query.ts -------------------------------------------------------------------------------- /src/schema/query/recordsAggregation.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/recordsAggregation.query.ts -------------------------------------------------------------------------------- /src/schema/query/referenceData.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/referenceData.query.ts -------------------------------------------------------------------------------- /src/schema/query/referenceDataAggregation.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/referenceDataAggregation.query.ts -------------------------------------------------------------------------------- /src/schema/query/referenceDatas.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/referenceDatas.query.ts -------------------------------------------------------------------------------- /src/schema/query/resource.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/resource.query.ts -------------------------------------------------------------------------------- /src/schema/query/resources.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/resources.query.ts -------------------------------------------------------------------------------- /src/schema/query/role.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/role.query.ts -------------------------------------------------------------------------------- /src/schema/query/roles.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/roles.query.ts -------------------------------------------------------------------------------- /src/schema/query/rolesFromApplications.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/rolesFromApplications.query.ts -------------------------------------------------------------------------------- /src/schema/query/step.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/step.query.ts -------------------------------------------------------------------------------- /src/schema/query/steps.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/steps.query.ts -------------------------------------------------------------------------------- /src/schema/query/types.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/types.query.ts -------------------------------------------------------------------------------- /src/schema/query/user.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/user.query.ts -------------------------------------------------------------------------------- /src/schema/query/users.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/users.query.ts -------------------------------------------------------------------------------- /src/schema/query/workflow.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/workflow.query.ts -------------------------------------------------------------------------------- /src/schema/query/workflows.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/query/workflows.query.ts -------------------------------------------------------------------------------- /src/schema/shared/auth-check.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/shared/auth-check.util.ts -------------------------------------------------------------------------------- /src/schema/shared/index.ts: -------------------------------------------------------------------------------- 1 | export * from './auth-check.util'; 2 | -------------------------------------------------------------------------------- /src/schema/subscription/applicationEdited.subscription.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/subscription/applicationEdited.subscription.ts -------------------------------------------------------------------------------- /src/schema/subscription/applicationUnlocked.subscription.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/subscription/applicationUnlocked.subscription.ts -------------------------------------------------------------------------------- /src/schema/subscription/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/subscription/index.ts -------------------------------------------------------------------------------- /src/schema/subscription/notification.subscription.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/subscription/notification.subscription.ts -------------------------------------------------------------------------------- /src/schema/subscription/recordAdded.subscription.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/subscription/recordAdded.subscription.ts -------------------------------------------------------------------------------- /src/schema/types/access.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/types/access.type.ts -------------------------------------------------------------------------------- /src/schema/types/aggregation.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/types/aggregation.type.ts -------------------------------------------------------------------------------- /src/schema/types/apiConfiguration.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/types/apiConfiguration.type.ts -------------------------------------------------------------------------------- /src/schema/types/application.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/types/application.type.ts -------------------------------------------------------------------------------- /src/schema/types/channel.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/types/channel.type.ts -------------------------------------------------------------------------------- /src/schema/types/customNotification.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/types/customNotification.type.ts -------------------------------------------------------------------------------- /src/schema/types/customTemplate.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/types/customTemplate.type.ts -------------------------------------------------------------------------------- /src/schema/types/dashboard.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/types/dashboard.type.ts -------------------------------------------------------------------------------- /src/schema/types/dataset.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/types/dataset.type.ts -------------------------------------------------------------------------------- /src/schema/types/distributionList.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/types/distributionList.type.ts -------------------------------------------------------------------------------- /src/schema/types/draftRecord.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/types/draftRecord.type.ts -------------------------------------------------------------------------------- /src/schema/types/emailDistribution.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/types/emailDistribution.type.ts -------------------------------------------------------------------------------- /src/schema/types/emailNotification.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/types/emailNotification.type.ts -------------------------------------------------------------------------------- /src/schema/types/form.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/types/form.type.ts -------------------------------------------------------------------------------- /src/schema/types/geospatial.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/types/geospatial.type.ts -------------------------------------------------------------------------------- /src/schema/types/group.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/types/group.type.ts -------------------------------------------------------------------------------- /src/schema/types/historyVersion.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/types/historyVersion.type.ts -------------------------------------------------------------------------------- /src/schema/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/types/index.ts -------------------------------------------------------------------------------- /src/schema/types/layer.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/types/layer.type.ts -------------------------------------------------------------------------------- /src/schema/types/layout.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/types/layout.type.ts -------------------------------------------------------------------------------- /src/schema/types/metadata.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/types/metadata.type.ts -------------------------------------------------------------------------------- /src/schema/types/notification.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/types/notification.type.ts -------------------------------------------------------------------------------- /src/schema/types/page.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/types/page.type.ts -------------------------------------------------------------------------------- /src/schema/types/pagination.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/types/pagination.type.ts -------------------------------------------------------------------------------- /src/schema/types/permission.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/types/permission.type.ts -------------------------------------------------------------------------------- /src/schema/types/positionAttribute.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/types/positionAttribute.type.ts -------------------------------------------------------------------------------- /src/schema/types/positionAttributeCategory.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/types/positionAttributeCategory.type.ts -------------------------------------------------------------------------------- /src/schema/types/pullJob.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/types/pullJob.type.ts -------------------------------------------------------------------------------- /src/schema/types/record.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/types/record.type.ts -------------------------------------------------------------------------------- /src/schema/types/referenceData.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/types/referenceData.type.ts -------------------------------------------------------------------------------- /src/schema/types/resource.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/types/resource.type.ts -------------------------------------------------------------------------------- /src/schema/types/role.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/types/role.type.ts -------------------------------------------------------------------------------- /src/schema/types/step.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/types/step.type.ts -------------------------------------------------------------------------------- /src/schema/types/subscription.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/types/subscription.type.ts -------------------------------------------------------------------------------- /src/schema/types/template.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/types/template.type.ts -------------------------------------------------------------------------------- /src/schema/types/user.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/types/user.type.ts -------------------------------------------------------------------------------- /src/schema/types/version.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/types/version.type.ts -------------------------------------------------------------------------------- /src/schema/types/workflow.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/schema/types/workflow.type.ts -------------------------------------------------------------------------------- /src/security/defineUserAbility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/security/defineUserAbility.ts -------------------------------------------------------------------------------- /src/security/extendAbilityForApplication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/security/extendAbilityForApplication.ts -------------------------------------------------------------------------------- /src/security/extendAbilityForContent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/security/extendAbilityForContent.ts -------------------------------------------------------------------------------- /src/security/extendAbilityForPage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/security/extendAbilityForPage.ts -------------------------------------------------------------------------------- /src/security/extendAbilityForRecords.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/security/extendAbilityForRecords.ts -------------------------------------------------------------------------------- /src/security/extendAbilityForStep.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/security/extendAbilityForStep.ts -------------------------------------------------------------------------------- /src/server/EIOSOwnernshipMapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/server/EIOSOwnernshipMapping.ts -------------------------------------------------------------------------------- /src/server/apollo/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/server/apollo/context.ts -------------------------------------------------------------------------------- /src/server/apollo/dataSources.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/server/apollo/dataSources.ts -------------------------------------------------------------------------------- /src/server/apollo/onConnect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/server/apollo/onConnect.ts -------------------------------------------------------------------------------- /src/server/apollo/queries/introspection.query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/server/apollo/queries/introspection.query.ts -------------------------------------------------------------------------------- /src/server/common-services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/server/common-services.ts -------------------------------------------------------------------------------- /src/server/customNotificationScheduler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/server/customNotificationScheduler.ts -------------------------------------------------------------------------------- /src/server/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/server/database.ts -------------------------------------------------------------------------------- /src/server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/server/index.ts -------------------------------------------------------------------------------- /src/server/middlewares/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/server/middlewares/auth.ts -------------------------------------------------------------------------------- /src/server/middlewares/cors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/server/middlewares/cors.ts -------------------------------------------------------------------------------- /src/server/middlewares/graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/server/middlewares/graphql.ts -------------------------------------------------------------------------------- /src/server/middlewares/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/server/middlewares/index.ts -------------------------------------------------------------------------------- /src/server/middlewares/rateLimit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/server/middlewares/rateLimit.ts -------------------------------------------------------------------------------- /src/server/middlewares/rest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/server/middlewares/rest.ts -------------------------------------------------------------------------------- /src/server/middlewares/winston.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/server/middlewares/winston.ts -------------------------------------------------------------------------------- /src/server/pubsub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/server/pubsub.ts -------------------------------------------------------------------------------- /src/server/pubsubSafe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/server/pubsubSafe.ts -------------------------------------------------------------------------------- /src/server/pullJobScheduler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/server/pullJobScheduler.ts -------------------------------------------------------------------------------- /src/server/redis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/server/redis.ts -------------------------------------------------------------------------------- /src/server/subscriberSafe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/server/subscriberSafe.ts -------------------------------------------------------------------------------- /src/services/form.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/services/form.service.ts -------------------------------------------------------------------------------- /src/services/logger.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/services/logger.service.ts -------------------------------------------------------------------------------- /src/services/page.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/services/page.service.ts -------------------------------------------------------------------------------- /src/setup/clearLayouts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/setup/clearLayouts.ts -------------------------------------------------------------------------------- /src/setup/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/setup/init.ts -------------------------------------------------------------------------------- /src/types/filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/types/filter.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/types/permission.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/types/permission.ts -------------------------------------------------------------------------------- /src/types/route-definition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/types/route-definition.ts -------------------------------------------------------------------------------- /src/utils/aggregation/buildCalculatedFieldPipeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/aggregation/buildCalculatedFieldPipeline.ts -------------------------------------------------------------------------------- /src/utils/aggregation/buildPipeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/aggregation/buildPipeline.ts -------------------------------------------------------------------------------- /src/utils/aggregation/buildReferenceDataAggregation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/aggregation/buildReferenceDataAggregation.ts -------------------------------------------------------------------------------- /src/utils/aggregation/expressionFromString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/aggregation/expressionFromString.ts -------------------------------------------------------------------------------- /src/utils/aggregation/setDisplayText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/aggregation/setDisplayText.ts -------------------------------------------------------------------------------- /src/utils/context/getContextData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/context/getContextData.ts -------------------------------------------------------------------------------- /src/utils/context/getNewDashboardName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/context/getNewDashboardName.ts -------------------------------------------------------------------------------- /src/utils/date/getICULocale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/date/getICULocale.ts -------------------------------------------------------------------------------- /src/utils/date/getTimeWithTimezone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/date/getTimeWithTimezone.ts -------------------------------------------------------------------------------- /src/utils/email/gridEmailBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/email/gridEmailBuilder.ts -------------------------------------------------------------------------------- /src/utils/email/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/email/index.ts -------------------------------------------------------------------------------- /src/utils/email/sendEmail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/email/sendEmail.ts -------------------------------------------------------------------------------- /src/utils/files/copyFolder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/files/copyFolder.ts -------------------------------------------------------------------------------- /src/utils/files/csvBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/files/csvBuilder.ts -------------------------------------------------------------------------------- /src/utils/files/deleteFolder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/files/deleteFolder.ts -------------------------------------------------------------------------------- /src/utils/files/downloadFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/files/downloadFile.ts -------------------------------------------------------------------------------- /src/utils/files/extractGridData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/files/extractGridData.ts -------------------------------------------------------------------------------- /src/utils/files/fileBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/files/fileBuilder.ts -------------------------------------------------------------------------------- /src/utils/files/format.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/files/format.helper.ts -------------------------------------------------------------------------------- /src/utils/files/getColumns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/files/getColumns.ts -------------------------------------------------------------------------------- /src/utils/files/getColumnsFromMeta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/files/getColumnsFromMeta.ts -------------------------------------------------------------------------------- /src/utils/files/getRows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/files/getRows.ts -------------------------------------------------------------------------------- /src/utils/files/getRowsFromMeta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/files/getRowsFromMeta.ts -------------------------------------------------------------------------------- /src/utils/files/getUploadColumns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/files/getUploadColumns.ts -------------------------------------------------------------------------------- /src/utils/files/historyBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/files/historyBuilder.ts -------------------------------------------------------------------------------- /src/utils/files/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/files/index.ts -------------------------------------------------------------------------------- /src/utils/files/loadRow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/files/loadRow.ts -------------------------------------------------------------------------------- /src/utils/files/resourceExporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/files/resourceExporter.ts -------------------------------------------------------------------------------- /src/utils/files/templateBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/files/templateBuilder.ts -------------------------------------------------------------------------------- /src/utils/files/uploadFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/files/uploadFile.ts -------------------------------------------------------------------------------- /src/utils/files/xlsBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/files/xlsBuilder.ts -------------------------------------------------------------------------------- /src/utils/filter/getDateForMongo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/filter/getDateForMongo.ts -------------------------------------------------------------------------------- /src/utils/filter/getFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/filter/getFilter.ts -------------------------------------------------------------------------------- /src/utils/filter/getFormFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/filter/getFormFilter.ts -------------------------------------------------------------------------------- /src/utils/filter/getFormPermissionFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/filter/getFormPermissionFilter.ts -------------------------------------------------------------------------------- /src/utils/filter/getTimeForMongo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/filter/getTimeForMongo.ts -------------------------------------------------------------------------------- /src/utils/filter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/filter/index.ts -------------------------------------------------------------------------------- /src/utils/form/addField.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/form/addField.ts -------------------------------------------------------------------------------- /src/utils/form/checkDefaultFields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/form/checkDefaultFields.ts -------------------------------------------------------------------------------- /src/utils/form/checkRecordExpressions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/form/checkRecordExpressions.ts -------------------------------------------------------------------------------- /src/utils/form/checkRecordTriggers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/form/checkRecordTriggers.ts -------------------------------------------------------------------------------- /src/utils/form/checkRecordValidation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/form/checkRecordValidation.ts -------------------------------------------------------------------------------- /src/utils/form/extractFields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/form/extractFields.ts -------------------------------------------------------------------------------- /src/utils/form/findDuplicateFields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/form/findDuplicateFields.ts -------------------------------------------------------------------------------- /src/utils/form/getAccessibleFields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/form/getAccessibleFields.ts -------------------------------------------------------------------------------- /src/utils/form/getDisplayText.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/form/getDisplayText.ts -------------------------------------------------------------------------------- /src/utils/form/getFieldType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/form/getFieldType.ts -------------------------------------------------------------------------------- /src/utils/form/getNextId.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/form/getNextId.ts -------------------------------------------------------------------------------- /src/utils/form/getNextQuestion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/form/getNextQuestion.ts -------------------------------------------------------------------------------- /src/utils/form/getOwnership.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/form/getOwnership.ts -------------------------------------------------------------------------------- /src/utils/form/getParentQuestion.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/form/getPreviousQuestion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/form/getPreviousQuestion.ts -------------------------------------------------------------------------------- /src/utils/form/getQuestion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/form/getQuestion.ts -------------------------------------------------------------------------------- /src/utils/form/getQuestionPosition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/form/getQuestionPosition.ts -------------------------------------------------------------------------------- /src/utils/form/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/form/index.ts -------------------------------------------------------------------------------- /src/utils/form/metadata.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/form/metadata.helper.ts -------------------------------------------------------------------------------- /src/utils/form/removeField.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/form/removeField.ts -------------------------------------------------------------------------------- /src/utils/form/replaceField.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/form/replaceField.ts -------------------------------------------------------------------------------- /src/utils/form/transformRecord.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/form/transformRecord.ts -------------------------------------------------------------------------------- /src/utils/geojson/generateGeoJson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/geojson/generateGeoJson.ts -------------------------------------------------------------------------------- /src/utils/gis/getCountryPolygons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/gis/getCountryPolygons.ts -------------------------------------------------------------------------------- /src/utils/history/index.ts: -------------------------------------------------------------------------------- 1 | export * from './recordHistory'; 2 | -------------------------------------------------------------------------------- /src/utils/history/recordHistory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/history/recordHistory.ts -------------------------------------------------------------------------------- /src/utils/models/deletion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/models/deletion.ts -------------------------------------------------------------------------------- /src/utils/notification/blobStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/notification/blobStorage.ts -------------------------------------------------------------------------------- /src/utils/notification/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/notification/util.ts -------------------------------------------------------------------------------- /src/utils/proxy/authManagement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/proxy/authManagement.ts -------------------------------------------------------------------------------- /src/utils/proxy/getChoices.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/proxy/getChoices.ts -------------------------------------------------------------------------------- /src/utils/proxy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/proxy/index.ts -------------------------------------------------------------------------------- /src/utils/query/queryBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/query/queryBuilder.ts -------------------------------------------------------------------------------- /src/utils/referenceData/referenceDataFilter.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/referenceData/referenceDataFilter.util.ts -------------------------------------------------------------------------------- /src/utils/schema/buildSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/schema/buildSchema.ts -------------------------------------------------------------------------------- /src/utils/schema/buildTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/schema/buildTypes.ts -------------------------------------------------------------------------------- /src/utils/schema/errors/checkPageSize.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/schema/errors/checkPageSize.util.ts -------------------------------------------------------------------------------- /src/utils/schema/getStructures.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/schema/getStructures.ts -------------------------------------------------------------------------------- /src/utils/schema/introspection/getConnectionType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/schema/introspection/getConnectionType.ts -------------------------------------------------------------------------------- /src/utils/schema/introspection/getFieldName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/schema/introspection/getFieldName.ts -------------------------------------------------------------------------------- /src/utils/schema/introspection/getFieldType.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/schema/introspection/getFieldType.ts -------------------------------------------------------------------------------- /src/utils/schema/introspection/getFields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/schema/introspection/getFields.ts -------------------------------------------------------------------------------- /src/utils/schema/introspection/getMetaTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/schema/introspection/getMetaTypes.ts -------------------------------------------------------------------------------- /src/utils/schema/introspection/getReversedFields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/schema/introspection/getReversedFields.ts -------------------------------------------------------------------------------- /src/utils/schema/introspection/getSchema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/schema/introspection/getSchema.ts -------------------------------------------------------------------------------- /src/utils/schema/introspection/getTypeFromKey.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/schema/introspection/getTypeFromKey.ts -------------------------------------------------------------------------------- /src/utils/schema/introspection/getTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/schema/introspection/getTypes.ts -------------------------------------------------------------------------------- /src/utils/schema/introspection/isRelationshipField.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/schema/introspection/isRelationshipField.ts -------------------------------------------------------------------------------- /src/utils/schema/resolvers/Entity/getReferenceDataResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/schema/resolvers/Entity/getReferenceDataResolver.ts -------------------------------------------------------------------------------- /src/utils/schema/resolvers/Entity/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/schema/resolvers/Entity/index.ts -------------------------------------------------------------------------------- /src/utils/schema/resolvers/Meta/getMetaCheckboxResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/schema/resolvers/Meta/getMetaCheckboxResolver.ts -------------------------------------------------------------------------------- /src/utils/schema/resolvers/Meta/getMetaDropdownResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/schema/resolvers/Meta/getMetaDropdownResolver.ts -------------------------------------------------------------------------------- /src/utils/schema/resolvers/Meta/getMetaFieldResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/schema/resolvers/Meta/getMetaFieldResolver.ts -------------------------------------------------------------------------------- /src/utils/schema/resolvers/Meta/getMetaOwnerResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/schema/resolvers/Meta/getMetaOwnerResolver.ts -------------------------------------------------------------------------------- /src/utils/schema/resolvers/Meta/getMetaRadiogroupResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/schema/resolvers/Meta/getMetaRadiogroupResolver.ts -------------------------------------------------------------------------------- /src/utils/schema/resolvers/Meta/getMetaReferenceDataResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/schema/resolvers/Meta/getMetaReferenceDataResolver.ts -------------------------------------------------------------------------------- /src/utils/schema/resolvers/Meta/getMetaTagboxResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/schema/resolvers/Meta/getMetaTagboxResolver.ts -------------------------------------------------------------------------------- /src/utils/schema/resolvers/Meta/getMetaUsersResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/schema/resolvers/Meta/getMetaUsersResolver.ts -------------------------------------------------------------------------------- /src/utils/schema/resolvers/Meta/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/schema/resolvers/Meta/index.ts -------------------------------------------------------------------------------- /src/utils/schema/resolvers/Query/all.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/schema/resolvers/Query/all.ts -------------------------------------------------------------------------------- /src/utils/schema/resolvers/Query/getFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/schema/resolvers/Query/getFilter.ts -------------------------------------------------------------------------------- /src/utils/schema/resolvers/Query/getSearchFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/schema/resolvers/Query/getSearchFilter.ts -------------------------------------------------------------------------------- /src/utils/schema/resolvers/Query/getSortAggregation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/schema/resolvers/Query/getSortAggregation.ts -------------------------------------------------------------------------------- /src/utils/schema/resolvers/Query/getSortField.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/schema/resolvers/Query/getSortField.ts -------------------------------------------------------------------------------- /src/utils/schema/resolvers/Query/getSortOrder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/schema/resolvers/Query/getSortOrder.ts -------------------------------------------------------------------------------- /src/utils/schema/resolvers/Query/getStyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/schema/resolvers/Query/getStyle.ts -------------------------------------------------------------------------------- /src/utils/schema/resolvers/Query/meta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/schema/resolvers/Query/meta.ts -------------------------------------------------------------------------------- /src/utils/schema/resolvers/Query/single.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/schema/resolvers/Query/single.ts -------------------------------------------------------------------------------- /src/utils/schema/resolvers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/schema/resolvers/index.ts -------------------------------------------------------------------------------- /src/utils/server/checkConfig.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/server/checkConfig.util.ts -------------------------------------------------------------------------------- /src/utils/user/fetchGroups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/user/fetchGroups.ts -------------------------------------------------------------------------------- /src/utils/user/getAutoAssignedRoles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/user/getAutoAssignedRoles.ts -------------------------------------------------------------------------------- /src/utils/user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/user/index.ts -------------------------------------------------------------------------------- /src/utils/user/sendUserInvitation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/user/sendUserInvitation.ts -------------------------------------------------------------------------------- /src/utils/user/updateUserAttributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/user/updateUserAttributes.ts -------------------------------------------------------------------------------- /src/utils/user/updateUserGroups.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/user/updateUserGroups.ts -------------------------------------------------------------------------------- /src/utils/user/userManagement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/user/userManagement.ts -------------------------------------------------------------------------------- /src/utils/validators/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/validators/index.ts -------------------------------------------------------------------------------- /src/utils/validators/validateApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/validators/validateApi.ts -------------------------------------------------------------------------------- /src/utils/validators/validateName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/src/utils/validators/validateName.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReliefApplications/ems-backend/HEAD/tsconfig.json --------------------------------------------------------------------------------