24 lines
514 B
Ruby
24 lines
514 B
Ruby
# frozen_string_literal: true
|
|
module Api
|
|
module V2
|
|
class UsersController < RestfulController
|
|
def current
|
|
@user = current_user
|
|
authorize @user
|
|
show # delegate to the normal show function
|
|
end
|
|
|
|
private
|
|
|
|
def searchable_columns
|
|
[:name]
|
|
end
|
|
|
|
# only ask serializer to return is_admin field if we're on the
|
|
# current_user action
|
|
def default_scope
|
|
super.merge(show_is_admin: action_name == 'current')
|
|
end
|
|
end
|
|
end
|
|
end
|