2017-02-27 08:15:00 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-11-21 15:13:37 +09:00
|
|
|
class Settings::ExportsController < Settings::BaseController
|
2017-03-20 04:29:41 +09:00
|
|
|
def show
|
2017-04-13 20:02:02 +09:00
|
|
|
@export = Export.new(current_account)
|
2017-03-20 04:29:41 +09:00
|
|
|
end
|
2017-02-27 08:15:00 +09:00
|
|
|
end
|