diff options
| author | Robb Kidd <robb@thekidds.org> | 2012-05-21 13:30:53 -0400 |
|---|---|---|
| committer | Robb Kidd <robb@thekidds.org> | 2012-06-20 14:09:46 -0400 |
| commit | 6617eaaf9b9ff5a76cb2c4150623a685357966d4 (patch) | |
| tree | 7ab5117abd3461db01b6f2c08d43595416e9744e /config/application.rb | |
| parent | 356430c3c0e8aed3f8c9f2e181aaeaeaa4f1d693 (diff) | |
| download | gitlab-ce-6617eaaf9b9ff5a76cb2c4150623a685357966d4.tar.gz | |
Make IssueObserver handle issus, not MailerObserver
Diffstat (limited to 'config/application.rb')
| -rw-r--r-- | config/application.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/application.rb b/config/application.rb index 7bd5703b31a..4531b5ead6c 100644 --- a/config/application.rb +++ b/config/application.rb @@ -23,7 +23,7 @@ module Gitlab # config.plugins = [ :exception_notification, :ssl_requirement, :all ] # Activate observers that should always be running. - config.active_record.observers = :mailer_observer, :activity_observer, :project_observer, :key_observer + config.active_record.observers = :mailer_observer, :activity_observer, :project_observer, :key_observer, :issue_observer # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone. # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC. |
