about summary refs log tree commit diff
path: root/app/controllers/settings/exports_controller.rb
blob: 9c03ece86005c59c657f0774438f3e92d036a820 (plain) (blame)
1
2
3
4
5
6
7
# frozen_string_literal: true

class Settings::ExportsController < Settings::BaseController
  def show
    @export = Export.new(current_account)
  end
end