1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/app/views/api/machines/show.json.jbuilder

28 lines
1007 B
Ruby

# frozen_string_literal: true
json.partial! 'api/machines/machine', machine: @machine
json.extract! @machine, :description, :spec
json.machine_files_attributes @machine.machine_files do |f|
json.id f.id
json.attachment_name f.attachment_identifier
json.attachment_url f.attachment_url
end
json.trainings @machine.trainings.each, :id, :name, :disabled
if current_user
json.current_user_is_trained current_user.training_machine?(@machine)
if !current_user.training_machine?(@machine) && current_user.next_training_reservation_by_machine(@machine)
json.current_user_next_training_reservation do
json.partial! 'api/reservations/reservation', reservation: current_user.next_training_reservation_by_machine(@machine)
end
end
json.current_user_has_packs current_user.packs?(@machine)
json.has_prepaid_packs_for_current_user @machine.packs?(current_user)
end
json.machine_projects @machine.projects.published.last(10) do |p|
json.id p.id
json.name p.name
json.slug p.slug
end