2017-02-26 18:15:00 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Settings::ExportsController < ApplicationController
|
2018-02-21 17:21:32 -05:00
|
|
|
include Authorization
|
|
|
|
|
2017-02-26 18:15:00 -05:00
|
|
|
layout 'admin'
|
|
|
|
|
|
|
|
before_action :authenticate_user!
|
2018-10-24 18:10:01 -04:00
|
|
|
before_action :set_body_classes
|
2017-02-26 18:15:00 -05:00
|
|
|
|
2017-03-19 15:29:41 -04:00
|
|
|
def show
|
2018-02-21 17:21:32 -05: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 15:29:41 -04:00
|
|
|
end
|
2018-10-24 18:10:01 -04:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def set_body_classes
|
|
|
|
@body_classes = 'admin'
|
|
|
|
end
|
2017-02-26 18:15:00 -05:00
|
|
|
end
|