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

10 lines
222 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, :project_id] })
2017-05-05 22:47:32 +00:00
end
end