diff options
author | Valeriy Sizov <vsv2711@gmail.com> | 2012-07-20 01:01:29 +0300 |
---|---|---|
committer | Valeriy Sizov <vsv2711@gmail.com> | 2012-07-20 01:01:29 +0300 |
commit | d9cd6269e991e187c2acf272240fcb332270a5c4 (patch) | |
tree | 4e720f45aaf18e072278fdb66cb09bf76cb3f6d8 /config | |
parent | 86bd11cbd8796adc31849aa02317604abb1576e2 (diff) | |
download | gitlab-ce-d9cd6269e991e187c2acf272240fcb332270a5c4.tar.gz |
System Hooks: move callback to observer
Diffstat (limited to 'config')
-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 3585c4b0a87..937262237e9 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, :issue_observer, :user_observer + config.active_record.observers = :mailer_observer, :activity_observer, :project_observer, :key_observer, :issue_observer, :user_observer, :system_hook_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. |