mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-01 04:24:22 +00:00
0e39cc6a35
* Refactor Export to take an account and know about the export types * Use Export instance in settings/exports#show
12 lines
207 B
Ruby
12 lines
207 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Settings::ExportsController < ApplicationController
|
|
layout 'admin'
|
|
|
|
before_action :authenticate_user!
|
|
|
|
def show
|
|
@export = Export.new(current_account)
|
|
end
|
|
end
|