1
0
mirror of https://github.com/funamitech/mastodon synced 2024-11-24 23:26:42 +09:00
YuruToot/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-20 04:29:41 +09:00
def show
@export = Export.new(current_account)
2017-03-20 04:29:41 +09:00
end
end