metamaps--metamaps/app/serializers/api/v2/token_serializer.rb

13 lines
229 B
Ruby
Raw Normal View History

2016-09-24 03:00:46 +00:00
# frozen_string_literal: true
2017-11-25 19:23:47 +00:00
module Api
module V2
class TokenSerializer < ApplicationSerializer
attributes :id,
2016-09-24 03:00:46 +00:00
:token,
:description,
:created_at
end
end
end