a11yist/app/controllers/admin/backups_controller.rb
david fd42a3f173
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
backups
2024-07-24 01:48:27 +02:00

8 lines
203 B
Ruby

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