tab/app/controllers/users_controller.rb
2015-09-10 14:12:05 +02:00

19 lines
366 B
Ruby

class UsersController < ApplicationController
load_and_authorize_resource
def show
@user = User.find(params[:id])
@transaction = Transaction.new
respond_to do |format|
format.html
format.json { render json: TransactionDatatable.new(
view_context, {user: @user})
}
end
end
def index
@users = User.all
end
end