debian-mirror-gitlab/app/serializers/label_serializer.rb

8 lines
178 B
Ruby
Raw Normal View History

2017-08-17 22:00:37 +05:30
class LabelSerializer < BaseSerializer
entity LabelEntity
def represent_appearance(resource)
represent(resource, { only: [:id, :title, :color, :text_color] })
end
end