1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-02 13:24:20 +01:00
fab-manager/app/views/api/custom_assets/show.json.jbuilder

12 lines
396 B
Plaintext
Raw Normal View History

2016-03-23 18:39:41 +01:00
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