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

16 lines
325 B
Ruby
Raw Normal View History

class Api::TokensController < API::RestfulController
2016-03-12 09:37:18 +11:00
skip_authorization
2016-03-11 17:26:54 +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
def visible_records
current_user.tokens
end
end