2017-02-26 23:15:00 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-12-12 21:32:13 +00:00
|
|
|
class Settings::ExportsController < Settings::BaseController
|
2018-02-21 22:21:32 +00:00
|
|
|
include Authorization
|
|
|
|
|
2017-02-26 23:15:00 +00:00
|
|
|
layout 'admin'
|
|
|
|
|
|
|
|
before_action :authenticate_user!
|
|
|
|
|
2017-03-19 19:29:41 +00:00
|
|
|
def show
|
2018-02-21 22:21:32 +00: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 19:29:41 +00:00
|
|
|
end
|
2017-02-26 23:15:00 +00:00
|
|
|
end
|