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)
|
2020-10-14 05:08:46 -04:00
|
|
|
represent(resource, { only: [:id, :title, :color, :text_color, :project_id] })
|
2017-05-05 18:47:32 -04:00
|
|
|
end
|
|
|
|
end
|