From 0c553469b95d8f7d5841a158f53414d8d0b9def3 Mon Sep 17 00:00:00 2001 From: euanmillar Date: Mon, 13 Nov 2023 11:56:31 +0000 Subject: [PATCH] Fix error when merging conflicts with Farajaland --- src/api/application/application-config-default.ts | 1 + src/index.ts | 12 ------------ 2 files changed, 1 insertion(+), 12 deletions(-) diff --git a/src/api/application/application-config-default.ts b/src/api/application/application-config-default.ts index d7bcd2a2f..467d9ab6c 100644 --- a/src/api/application/application-config-default.ts +++ b/src/api/application/application-config-default.ts @@ -42,6 +42,7 @@ export const defaultApplicationConfig = { }, INFORMANT_SIGNATURE: false, INFORMANT_SIGNATURE_REQUIRED: false, + EXTERNAL_VALIDATION_WORKQUEUE: false, FIELD_AGENT_AUDIT_LOCATIONS: 'DISTRICT', DECLARATION_AUDIT_LOCATIONS: 'DISTRICT', USER_NOTIFICATION_DELIVERY_METHOD: 'email', // or 'sms', or '' ... You can use 'sms' for WhatsApp diff --git a/src/index.ts b/src/index.ts index bcbc76ed8..449230487 100644 --- a/src/index.ts +++ b/src/index.ts @@ -314,18 +314,6 @@ export async function createServer() { } }) - server.route({ - method: 'GET', - path: '/handlebars.js', - handler: handlebarsHandler, - options: { - auth: false, - tags: ['api'], - description: - 'Serves custom handlebar helper functions as JS to be used in certificates' - } - }) - server.route({ method: 'GET', path: '/validators.js',