mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-02 13:24:20 +01:00
12 lines
396 B
Plaintext
12 lines
396 B
Plaintext
|
json.custom_asset do
|
||
|
if @custom_asset
|
||
|
json.extract! @custom_asset, :id, :name
|
||
|
json.custom_asset_file_attributes do
|
||
|
json.id @custom_asset.custom_asset_file.id
|
||
|
json.attachment @custom_asset.custom_asset_file.attachment_identifier
|
||
|
json.attachment_url @custom_asset.custom_asset_file.attachment_url
|
||
|
end if @custom_asset.custom_asset_file
|
||
|
else
|
||
|
json.nil!
|
||
|
end
|
||
|
end
|