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

16 lines
339 B
Ruby
Raw Normal View History

class Api::TokensController < API::RestfulController
2016-03-11 22:37:18 +00:00
skip_authorization
2016-03-11 06:26:54 +00:00
def my_tokens
2016-03-11 22:37:18 +00:00
raise Pundit::NotAuthorizedError.new unless current_user.is_logged_in?
instantiate_collection page_collection: false, timeframe_collection: false
respond_with_collection
end
def visible_records
current_user.tokens
end
end