2018-11-18 11:00:15 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
class LabelSerializer < BaseSerializer
|
|
|
|
entity LabelEntity
|
|
|
|
|
|
|
|
def represent_appearance(resource)
|
2021-01-03 14:25:43 +05:30
|
|
|
represent(resource, { only: [:id, :title, :color, :text_color, :project_id] })
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
end
|