1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-10 21:24:20 +01:00
fab-manager/app/views/api/availabilities/spaces.json.jbuilder

13 lines
301 B
Plaintext
Raw Normal View History

# frozen_string_literal: true
2017-02-23 17:45:55 +01:00
json.array!(@slots) do |slot|
2022-07-12 17:46:01 +02:00
json.partial! 'api/availabilities/slot', slot: slot, operator_role: @operator_role
json.is_completed slot.full?
2017-02-23 17:45:55 +01:00
json.borderColor space_slot_border_color(slot)
json.space do
2022-07-12 17:46:01 +02:00
json.id @space.id
json.name @space.name
2017-02-23 17:45:55 +01:00
end
end