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

20 lines
401 B
Ruby
Raw Normal View History

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