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

20 lines
401 B
Ruby
Raw Normal View History

class Api::TokensController < API::RestfulController
2016-03-11 22:37:18 +00:00
def my_tokens
2016-03-12 00:58:26 +00:00
raise Pundit::NotAuthorizedError.new 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