This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-02-27 00:15:00 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Settings::ExportsController < ApplicationController
|
2018-02-21 23:21:32 +01:00
|
|
|
include Authorization
|
|
|
|
|
2017-02-27 00:15:00 +01:00
|
|
|
layout 'admin'
|
|
|
|
|
|
|
|
before_action :authenticate_user!
|
|
|
|
|
2017-03-19 20:29:41 +01:00
|
|
|
def show
|
2018-02-21 23:21:32 +01:00
|
|
|
@export = Export.new(current_account)
|
|
|
|
@backups = current_user.backups
|
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
|
|
|
authorize :backup, :create?
|
|
|
|
|
|
|
|
backup = current_user.backups.create!
|
|
|
|
BackupWorker.perform_async(backup.id)
|
|
|
|
|
|
|
|
redirect_to settings_export_path
|
2017-03-19 20:29:41 +01:00
|
|
|
end
|
2017-02-27 00:15:00 +01:00
|
|
|
end
|