2017-02-26 18:15:00 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Settings::ExportsController < ApplicationController
|
|
|
|
layout 'admin'
|
|
|
|
|
|
|
|
before_action :authenticate_user!
|
|
|
|
|
2017-03-19 15:29:41 -04:00
|
|
|
def show
|
2017-04-13 07:02:02 -04:00
|
|
|
@export = Export.new(current_account)
|
2017-03-19 15:29:41 -04:00
|
|
|
end
|
2017-02-26 18:15:00 -05:00
|
|
|
end
|