mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-10 21:24:20 +01:00
12 lines
321 B
Ruby
12 lines
321 B
Ruby
# frozen_string_literal: true
|
|
|
|
json.extract! machine, :id, :name, :slug, :disabled
|
|
|
|
if machine.machine_image
|
|
json.machine_image_attributes do
|
|
json.id machine.machine_image.id
|
|
json.attachment_name machine.machine_image.attachment_identifier
|
|
json.attachment_url machine.machine_image.attachment.url
|
|
end
|
|
end
|