2017-02-27 10:15:00 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Settings::ExportsController < ApplicationController
|
|
|
|
layout 'admin'
|
|
|
|
|
|
|
|
before_action :authenticate_user!
|
|
|
|
|
2017-03-20 06:29:41 +11:00
|
|
|
def show
|
2017-04-13 21:02:02 +10:00
|
|
|
@export = Export.new(current_account)
|
2017-03-20 06:29:41 +11:00
|
|
|
end
|
2017-02-27 10:15:00 +11:00
|
|
|
end
|