mastodon/app/controllers/settings/exports_controller.rb

12 lines
207 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class Settings::ExportsController < ApplicationController
layout 'admin'
before_action :authenticate_user!
2017-03-19 20:29:41 +01:00
def show
@export = Export.new(current_account)
2017-03-19 20:29:41 +01:00
end
end