summaryrefslogtreecommitdiff
path: root/app/controllers/users_controller.rb
diff options
context:
space:
mode:
authorAzul <azul@riseup.net>2016-05-23 11:59:41 +0200
committerAzul <azul@riseup.net>2016-05-23 13:01:50 +0200
commit7f0c42a5fa6d6c1952e53b9b73bad0202f746f3e (patch)
tree324aec6df7dd72ea9f08f496680b9be32bf057cd /app/controllers/users_controller.rb
parent0ba0eb633e8c24086405c53f3d8a8e747f3382e4 (diff)
cleanup: remove service level code from users_controller
There's no route to this right now and it also seems to be tested nowhere. Since i am about to split up the users_controller let's get rid of this and put it in the place we want it once we actually finish the implementation
Diffstat (limited to 'app/controllers/users_controller.rb')
-rw-r--r--app/controllers/users_controller.rb11
1 files changed, 1 insertions, 10 deletions
diff --git a/app/controllers/users_controller.rb b/app/controllers/users_controller.rb
index 225584f..2816a64 100644
--- a/app/controllers/users_controller.rb
+++ b/app/controllers/users_controller.rb
@@ -8,7 +8,7 @@ class UsersController < ApplicationController
before_filter :require_login, :except => [:new]
before_filter :redirect_if_logged_in, :only => [:new]
before_filter :require_admin, :only => [:index, :deactivate, :enable]
- before_filter :fetch_user, :only => [:show, :edit, :update, :destroy, :deactivate, :enable]
+ before_filter :fetch_user, :only => [:show, :edit, :destroy, :deactivate, :enable]
before_filter :require_registration_allowed, only: :new
respond_to :html
@@ -37,15 +37,6 @@ class UsersController < ApplicationController
def edit
end
- ## added so updating service level works, but not sure we will actually want this. also not sure that this is place to prevent user from updating own effective service level, but here as placeholder:
- def update
- @user.update_attributes(user_params)
- if @user.valid?
- flash[:notice] = I18n.t(:changes_saved)
- end
- respond_with @user, :location => edit_user_path(@user)
- end
-
def deactivate
@user.account.disable
flash[:notice] = I18n.t("actions.user_disabled_message", username: @user.username)