11 lines
269 B
Ruby
11 lines
269 B
Ruby
class ReservationSerializer < ActiveModel::Serializer
|
|
attributes :id, :start_time, :end_time, :customer_color_emoji
|
|
|
|
belongs_to :customer
|
|
belongs_to :team, serializer: TeamSerializer
|
|
|
|
def customer_color_emoji
|
|
object.customer&.color_emoji || ''
|
|
end
|
|
end
|