diff --git a/app/controllers/users_controller.rb b/app/controllers/users_controller.rb index f2376a4..11a4d14 100644 --- a/app/controllers/users_controller.rb +++ b/app/controllers/users_controller.rb @@ -4,7 +4,7 @@ class UsersController < ApplicationController before_action :authenticate_user!, except: :show before_action :authenticate_user_or_client!, only: :show - load_and_authorize_resource except: :show, find_by: :name + load_and_authorize_resource find_by: :name def show @user = User.find_by(name: params[:id]) || User.new