2018-07-19 14:43:13 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-05-05 18:47:32 -04:00
|
|
|
class LabelSerializer < BaseSerializer
|
|
|
|
entity LabelEntity
|
|
|
|
|
|
|
|
def represent_appearance(resource)
|
|
|
|
represent(resource, { only: [:id, :title, :color, :text_color] })
|
|
|
|
end
|
|
|
|
end
|