Commit 8771d6c26f91b031d018fe521c90373a7e4e6a74
1 parent
5e84da65
Exists in
master
and in
1 other branch
Default errbit to send notification emails on deploys and errors
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
app/models/app.rb
... | ... | @@ -5,8 +5,8 @@ class App |
5 | 5 | field :name, :type => String |
6 | 6 | field :api_key |
7 | 7 | field :resolve_errs_on_deploy, :type => Boolean, :default => false |
8 | - field :notify_on_errs, :type => Boolean, :default => false | |
9 | - field :notify_on_deploys, :type => Boolean, :default => false | |
8 | + field :notify_on_errs, :type => Boolean, :default => true | |
9 | + field :notify_on_deploys, :type => Boolean, :default => true | |
10 | 10 | key :name |
11 | 11 | |
12 | 12 | embeds_many :watchers | ... | ... |