From 8771d6c26f91b031d018fe521c90373a7e4e6a74 Mon Sep 17 00:00:00 2001 From: Raja Bhadury Date: Fri, 1 Apr 2011 08:58:01 +0100 Subject: [PATCH] Default errbit to send notification emails on deploys and errors --- app/models/app.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/models/app.rb b/app/models/app.rb index 28ce850..a926351 100644 --- a/app/models/app.rb +++ b/app/models/app.rb @@ -5,8 +5,8 @@ class App field :name, :type => String field :api_key field :resolve_errs_on_deploy, :type => Boolean, :default => false - field :notify_on_errs, :type => Boolean, :default => false - field :notify_on_deploys, :type => Boolean, :default => false + field :notify_on_errs, :type => Boolean, :default => true + field :notify_on_deploys, :type => Boolean, :default => true key :name embeds_many :watchers -- libgit2 0.21.2