Commit 1c507989010eda80020875f358b25ada8ee14136
1 parent
b58a7169
Exists in
master
and in
1 other branch
Set the default for notify_on_deploys to false. We found it really annoying.
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/models/app.rb
... | ... | @@ -8,7 +8,7 @@ class App |
8 | 8 | field :resolve_errs_on_deploy, :type => Boolean, :default => false |
9 | 9 | field :notify_all_users, :type => Boolean, :default => false |
10 | 10 | field :notify_on_errs, :type => Boolean, :default => true |
11 | - field :notify_on_deploys, :type => Boolean, :default => true | |
11 | + field :notify_on_deploys, :type => Boolean, :default => false | |
12 | 12 | field :email_at_notices, :type => Array, :default => Errbit::Config.email_at_notices |
13 | 13 | |
14 | 14 | # Some legacy apps may have string as key instead of BSON::ObjectID | ... | ... |