tab/app/controllers/users_controller.rb
2019-04-10 11:58:48 +02:00

27 lines
611 B
Ruby

class UsersController < ApplicationController
skip_before_action :verify_authenticity_token, only: :create
before_action :authenticate_user!, except: :show
before_action :authenticate_user_or_client!, only: :show
load_and_authorize_resource find_by: :name
def show
@user = User.find_by(name: params[:id]) || User.new
authorize! :read, @user
respond_to do |format|
format.html { @transaction = Transaction.new }
format.json { render json: @user }
end
end
def index
@users = User.all
end
def reset_key
@user.generate_key!
redirect_to @user
end
end