Files
fizzy/app/views/users/data_exports/show.json.jbuilder
T
2026-04-08 08:17:24 -04:00

7 lines
197 B
Ruby

json.(@export, :id, :status)
json.created_at @export.created_at.utc
if @export.completed? && @export.file.attached?
json.download_url rails_blob_url(@export.file, disposition: "attachment")
end