summaryrefslogtreecommitdiff
path: root/users/app/controllers/users_base_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'users/app/controllers/users_base_controller.rb')
-rw-r--r--users/app/controllers/users_base_controller.rb18
1 files changed, 0 insertions, 18 deletions
diff --git a/users/app/controllers/users_base_controller.rb b/users/app/controllers/users_base_controller.rb
deleted file mode 100644
index 9becf0d..0000000
--- a/users/app/controllers/users_base_controller.rb
+++ /dev/null
@@ -1,18 +0,0 @@
-#
-# common base class for all user related controllers
-#
-
-class UsersBaseController < ApplicationController
-
- protected
-
- def fetch_user
- @user = User.find(params[:user_id] || params[:id])
- if !@user && admin?
- redirect_to users_url, :alert => t(:no_such_thing, :thing => 'user')
- elsif !admin? && @user != current_user
- access_denied
- end
- end
-
-end