mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-07-29 12:48:15 +00:00
10 lines
222 B
Ruby
10 lines
222 B
Ruby
# frozen_string_literal: true
|
|
|
|
class LabelSerializer < BaseSerializer
|
|
entity LabelEntity
|
|
|
|
def represent_appearance(resource)
|
|
represent(resource, { only: [:id, :title, :color, :text_color, :project_id] })
|
|
end
|
|
end
|