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