From 3eaf9cb350073f7ff554459afe8ca7ef72c75b4f Mon Sep 17 00:00:00 2001 From: Kevin McConnell Date: Mon, 1 Dec 2025 16:01:41 +0000 Subject: [PATCH] Put `fizzy` in the export filename --- app/models/account/export.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/account/export.rb b/app/models/account/export.rb index 0f3d50f0c..65e033690 100644 --- a/app/models/account/export.rb +++ b/app/models/account/export.rb @@ -23,7 +23,7 @@ class Account::Export < ApplicationRecord zipfile = generate_zip file.attach( io: File.open(zipfile.path), - filename: "export-#{id}.zip", + filename: "fizzy-export-#{id}.zip", content_type: "application/zip" )