backups
Some checks failed
/ Checkout (push) Successful in 1m39s
/ Run tests (push) Successful in 1m14s
/ Run system tests (push) Failing after 1m40s
/ Build, push and deploy image (push) Successful in 12s

This commit is contained in:
david 2024-07-24 01:48:27 +02:00
parent 55df5bbb40
commit fd42a3f173
8 changed files with 123 additions and 4 deletions

View file

@ -0,0 +1,8 @@
module Admin
class BackupsController < ApplicationController
# GET /admin/backups/1
def show
send_file Backup.db_xlsx, filename: 'backup.xlsx', disposition: :attachment
end
end
end