1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-01 12:24:28 +01:00
fab-manager/app/views/api/custom_assets/show.json.jbuilder
2016-03-23 18:39:41 +01:00

12 lines
396 B
Ruby

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