summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/application_controller.rb')
-rw-r--r--app/controllers/application_controller.rb32
1 files changed, 0 insertions, 32 deletions
diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb
deleted file mode 100644
index e839aeb..0000000
--- a/app/controllers/application_controller.rb
+++ /dev/null
@@ -1,32 +0,0 @@
-# ===GLSAMaker v2
-# Copyright (C) 2009-2011 Alex Legler <a3li@gentoo.org>
-# Copyright (C) 2009 Pierre-Yves Rofes <py@gentoo.org>
-#
-# This program is free software: you can redistribute it and/or modify
-# it under the terms of the GNU Affero General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# For more information, see the LICENSE file.
-
-# Filters added to this controller apply to all controllers in the application.
-# Likewise, all the methods added will be available for all controllers.
-
-class ApplicationController < ActionController::Base
- helper :all # include all helpers, all the time
- protect_from_forgery # See ActionController::RequestForgeryProtection for details
-
- include Authentication
- include Authorization
- include ApplicationHelper
-
- before_filter :login_required
-
- protected
- def log_error(error)
- caller[0] =~ /`([^']*)'/ and where = $1
- logger.error "[#{where}] #{error.class}: #{error.message}"
- logger.info error.backtrace.join("\n")
- #ExceptionNotifier::Notifier.exception_notification(request.env, error).deliver
- end
-end