Skip to content
This repository has been archived by the owner on May 7, 2024. It is now read-only.

Commit

Permalink
Merge pull request #177 from rmetcalf9/master
Browse files Browse the repository at this point in the history
#170 Defaulting signup enabled to false for new databases
  • Loading branch information
pantsel authored Feb 25, 2018
2 parents a6e6ae2 + c2e45eb commit 58387e4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion api/models/Settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ var defaultModel = _.merge(_.cloneDeep(require('../base/Model')), {
seedData: [
{
"data": {
signup_enable: true,
// Default signup enabled to false on new databases
// if admins want signup enabled they can switch it on
// via settings. This seems to be more secure.
signup_enable: false,
signup_require_activation: false,
info_polling_interval: 5000,
email_default_sender_name: 'KONGA',
Expand Down

0 comments on commit 58387e4

Please sign in to comment.