Этот коммит содержится в:
Reed Garmsen
2015-06-28 19:38:19 -07:00
родитель 2cd5f3629f
Коммит e621950364
2 изменённых файлов: 5 добавлений и 5 удалений

Просмотреть файл

@@ -8,9 +8,9 @@
"FileLocation": "" "FileLocation": ""
}, },
"ServiceSettings": { "ServiceSettings": {
"SiteName": "Battlehouse", "SiteName": "Mattermost",
"Domain": "battlehouse.com", "Domain": "xxxxxxmustbefilledin.com",
"Mode" : "prod", "Mode" : "dev",
"AllowTesting" : false, "AllowTesting" : false,
"UseSSL": false, "UseSSL": false,
"Port": "8065", "Port": "8065",

Просмотреть файл

@@ -25,7 +25,7 @@ module.exports.cleanUpUrlable = function(input) {
module.exports.isTestDomain = function() { module.exports.isTestDomain = function() {
/*if ((/^localhost/).test(window.location.hostname)) if ((/^localhost/).test(window.location.hostname))
return true; return true;
if ((/^dockerhost/).test(window.location.hostname)) if ((/^dockerhost/).test(window.location.hostname))
@@ -44,7 +44,7 @@ module.exports.isTestDomain = function() {
return true; return true;
if ((/^176./).test(window.location.hostname)) if ((/^176./).test(window.location.hostname))
return true;*/ return true;
return false; return false;
}; };