summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--config/config.json6
-rw-r--r--web/react/utils/utils.jsx4
2 files changed, 5 insertions, 5 deletions
diff --git a/config/config.json b/config/config.json
index 90ec9540e..e38f1701a 100644
--- a/config/config.json
+++ b/config/config.json
@@ -8,9 +8,9 @@
"FileLocation": ""
},
"ServiceSettings": {
- "SiteName": "Battlehouse",
- "Domain": "battlehouse.com",
- "Mode" : "prod",
+ "SiteName": "Mattermost",
+ "Domain": "xxxxxxmustbefilledin.com",
+ "Mode" : "dev",
"AllowTesting" : false,
"UseSSL": false,
"Port": "8065",
diff --git a/web/react/utils/utils.jsx b/web/react/utils/utils.jsx
index 128d9d1e7..75c583c8f 100644
--- a/web/react/utils/utils.jsx
+++ b/web/react/utils/utils.jsx
@@ -25,7 +25,7 @@ module.exports.cleanUpUrlable = function(input) {
module.exports.isTestDomain = function() {
- /*if ((/^localhost/).test(window.location.hostname))
+ if ((/^localhost/).test(window.location.hostname))
return true;
if ((/^dockerhost/).test(window.location.hostname))
@@ -44,7 +44,7 @@ module.exports.isTestDomain = function() {
return true;
if ((/^176./).test(window.location.hostname))
- return true;*/
+ return true;
return false;
};