8 lines
201 B
Ruby
8 lines
201 B
Ruby
class TableSerializer < Qwaiter::Serializer
|
|
attributes(*%i[number width height position_x position_y section_id occupied active_list_id])
|
|
|
|
def occupied
|
|
object.active_list_id.present?
|
|
end
|
|
end
|