gitlab-org--gitlab-foss/app/serializers/label_serializer.rb

10 lines
209 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-05-05 22:47:32 +00:00
class LabelSerializer < BaseSerializer
entity LabelEntity
def represent_appearance(resource)
represent(resource, { only: [:id, :title, :color, :text_color] })
end
end