1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-14 14:43:50 -05:00
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