Added DISABLED_SUBDOMAINS to setup script

This commit is contained in:
David Baldwynn 2017-03-30 10:01:06 -07:00 committed by GitHub
parent 960f5a252b
commit ba69eb72c6

View file

@ -70,6 +70,11 @@ var nodemailer_providers = [
'Zoho'
];
var bool_options = [
"TRUE",
"FALSE"
]
var questions = [
{
type: 'confirm',
@ -97,6 +102,12 @@ var questions = [
message: 'Do you want to disable signups?',
default: false
},
{
type: 'list',
name: 'SUBDOMAINS_DISABLED',
message: 'Do you want to have subdomains? (i.e. are you using a custom domain)',
choices: bool_options
},
{
type: 'list',
name: 'MAILER_SERVICE_PROVIDER',