aboutsummaryrefslogtreecommitdiffstats
path: root/src/internal-server
diff options
context:
space:
mode:
authorLibravatar Vijay A <avijayr@protonmail.com>2021-08-09 23:42:01 +0530
committerLibravatar Vijay A <avijayr@protonmail.com>2021-08-09 23:42:01 +0530
commit39f6c7a4c96e9704671769750823dea4a40093a2 (patch)
treeb515fc605e7de994cda69e7a94f43315e24c6cd8 /src/internal-server
parentchore: i18n translations (diff)
downloadferdium-app-39f6c7a4c96e9704671769750823dea4a40093a2.tar.gz
ferdium-app-39f6c7a4c96e9704671769750823dea4a40093a2.tar.zst
ferdium-app-39f6c7a4c96e9704671769750823dea4a40093a2.zip
chore: set default fallback locale for spell-checker to be 'en-US'.
Diffstat (limited to 'src/internal-server')
-rw-r--r--src/internal-server/app/Controllers/Http/UserController.js5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/internal-server/app/Controllers/Http/UserController.js b/src/internal-server/app/Controllers/Http/UserController.js
index f7cdfc9c9..88c0deade 100644
--- a/src/internal-server/app/Controllers/Http/UserController.js
+++ b/src/internal-server/app/Controllers/Http/UserController.js
@@ -9,6 +9,7 @@ const btoa = require('btoa');
9const fetch = require('node-fetch'); 9const fetch = require('node-fetch');
10const uuid = require('uuid/v4'); 10const uuid = require('uuid/v4');
11const crypto = require('crypto'); 11const crypto = require('crypto');
12const { DEFAULT_APP_SETTINGS } = require('../../../../environment');
12 13
13const apiRequest = (url, route, method, auth) => new Promise((resolve, reject) => { 14const apiRequest = (url, route, method, auth) => new Promise((resolve, reject) => {
14 const base = `${url}/v1/`; 15 const base = `${url}/v1/`;
@@ -92,7 +93,7 @@ class UserController {
92 id: '82c1cf9d-ab58-4da2-b55e-aaa41d2142d8', 93 id: '82c1cf9d-ab58-4da2-b55e-aaa41d2142d8',
93 isSubscriptionOwner: true, 94 isSubscriptionOwner: true,
94 lastname: 'Application', 95 lastname: 'Application',
95 locale: 'en-US', 96 locale: DEFAULT_APP_SETTINGS.fallbackLocale,
96 ...settings || {}, 97 ...settings || {},
97 }); 98 });
98 } 99 }
@@ -128,7 +129,7 @@ class UserController {
128 id: '82c1cf9d-ab58-4da2-b55e-aaa41d2142d8', 129 id: '82c1cf9d-ab58-4da2-b55e-aaa41d2142d8',
129 isSubscriptionOwner: true, 130 isSubscriptionOwner: true,
130 lastname: 'Application', 131 lastname: 'Application',
131 locale: 'en-US', 132 locale: DEFAULT_APP_SETTINGS.fallbackLocale,
132 ...newSettings, 133 ...newSettings,
133 }, 134 },
134 status: [ 135 status: [