a3a7ff8c44
This reverts commit78863c40b7
, reversing changes made tobbaa070cca
.
18 lines
343 B
Ruby
18 lines
343 B
Ruby
class UsersController < ApplicationController
|
|
load_and_authorize_resource
|
|
|
|
def show
|
|
@user = User.find(params[:id])
|
|
respond_to do |format|
|
|
format.html
|
|
format.json do
|
|
datatable = DataTable.new(@user, params)
|
|
render json: datatable.json
|
|
end
|
|
end
|
|
end
|
|
|
|
def index
|
|
@users = User.all
|
|
end
|
|
end
|