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

12 lines
218 B
Ruby
Raw Normal View History

2016-09-24 03:00:46 +00:00
# frozen_string_literal: true
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