metamaps--metamaps/app/controllers/api/tokens_controller.rb

18 lines
395 B
Ruby
Raw Normal View History

class Api::TokensController < API::RestfulController
def my_tokens
raise Pundit::NotAuthorizedError unless current_user
instantiate_collection page_collection: false, timeframe_collection: false
respond_with_collection
end
2016-03-12 01:26:23 +00:00
private
def resource_serializer
"#{resource_name}_serializer".camelize.constantize
end
def visible_records
current_user.tokens
end
end