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,8 +5,8 @@ class App | ||
5 | field :name, :type => String | 5 | field :name, :type => String |
6 | field :api_key | 6 | field :api_key |
7 | field :resolve_errs_on_deploy, :type => Boolean, :default => false | 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 | key :name | 10 | key :name |
11 | 11 | ||
12 | embeds_many :watchers | 12 | embeds_many :watchers |