dce26700b2
Partially addresses #47424.
9 lines
209 B
Ruby
9 lines
209 B
Ruby
# frozen_string_literal: true
|
|
|
|
class LabelSerializer < BaseSerializer
|
|
entity LabelEntity
|
|
|
|
def represent_appearance(resource)
|
|
represent(resource, { only: [:id, :title, :color, :text_color] })
|
|
end
|
|
end
|