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