summaryrefslogtreecommitdiff
path: root/app/controllers
diff options
context:
space:
mode:
authorhukl <contact@smyck.org>2009-10-31 18:59:01 +0100
committerhukl <contact@smyck.org>2009-10-31 18:59:01 +0100
commita2671e54c3abfcdc14b95f262d0bb6d016a938ff (patch)
tree36fb152b93ac11fe2c97b91f6fde5b39408eed15 /app/controllers
parent3781bd31ff137e6bc0a3b1d0c5506dfb42878a5c (diff)
added exception notifier plugin to catch all exceptions
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/application_controller.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb
index d624c89..275a4d4 100644
--- a/app/controllers/application_controller.rb
+++ b/app/controllers/application_controller.rb
@@ -2,6 +2,8 @@
2# Likewise, all the methods added will be available for all controllers. 2# Likewise, all the methods added will be available for all controllers.
3 3
4class ApplicationController < ActionController::Base 4class ApplicationController < ActionController::Base
5
6 include ExceptionNotifiable
5 include AuthenticatedSystem 7 include AuthenticatedSystem
6 8
7 helper :all # include all helpers, all the time 9 helper :all # include all helpers, all the time