aboutsummaryrefslogtreecommitdiffstats
path: root/src/internal-server
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2021-10-01 22:13:42 +0530
committerLibravatar Vijay A <vraravam@users.noreply.github.com>2021-10-01 22:13:42 +0530
commitd4afc1eec9706d0027ad4b44421f8868688d1969 (patch)
tree3e43ed144c8f76f8c21f738d8c0703490c577afe /src/internal-server
parentrefactor: split 'environment' into 'environment-remote' with only the remote ... (diff)
downloadferdium-app-d4afc1eec9706d0027ad4b44421f8868688d1969.tar.gz
ferdium-app-d4afc1eec9706d0027ad4b44421f8868688d1969.tar.zst
ferdium-app-d4afc1eec9706d0027ad4b44421f8868688d1969.zip
refactor: move 'DEFAULT_APP_SETTINGS' from 'environment' to 'config' since it doesn't depend on the running process any more.
Diffstat (limited to 'src/internal-server')
-rw-r--r--src/internal-server/app/Controllers/Http/UserController.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/internal-server/app/Controllers/Http/UserController.js b/src/internal-server/app/Controllers/Http/UserController.js
index 9bbd2ff6e..25b5277bd 100644
--- a/src/internal-server/app/Controllers/Http/UserController.js
+++ b/src/internal-server/app/Controllers/Http/UserController.js
@@ -7,7 +7,7 @@ const btoa = require('btoa');
7const fetch = require('node-fetch'); 7const fetch = require('node-fetch');
8const { v4: uuid } = require('uuid'); 8const { v4: uuid } = require('uuid');
9const crypto = require('crypto'); 9const crypto = require('crypto');
10const { DEFAULT_APP_SETTINGS } = require('../../../../environment'); 10const { DEFAULT_APP_SETTINGS } = require('../../../../config');
11const { API_VERSION } = require('../../../../environment-remote'); 11const { API_VERSION } = require('../../../../environment-remote');
12const { default: userAgent } = require('../../../../helpers/userAgent-helpers'); 12const { default: userAgent } = require('../../../../helpers/userAgent-helpers');
13 13