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

13 lines
219 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 MetacodeSerializer < ApplicationSerializer
attributes :id,
2016-09-24 03:00:46 +00:00
:name,
:color,
2016-10-04 14:24:47 +00:00
:icon
end
end
end