Remove isDev flag

We can pretty much test everything here on self-hosted cloudrons now
This commit is contained in:
Girish Ramakrishnan
2017-04-13 11:24:57 -07:00
parent f6a2406091
commit cdb5dc2c53
8 changed files with 10 additions and 18 deletions

View File

@@ -32,7 +32,6 @@ exports = module.exports = {
appFqdn: appFqdn,
zoneName: zoneName,
isDev: isDev,
isDemo: isDemo,
tlsCert: tlsCert,
@@ -204,10 +203,6 @@ function database() {
return get('database');
}
function isDev() {
return /dev/i.test(get('boxVersionsUrl'));
}
function isDemo() {
return get('isDemo') === true;
}