mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-01-19 08:52:25 +01:00
12 lines
321 B
Plaintext
12 lines
321 B
Plaintext
|
# 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
|