This repository has been archived on 2023-07-01. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon/app/controllers/settings/exports_controller.rb
2017-11-20 22:13:37 -08:00

8 lines
155 B
Ruby

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