1
0
mirror of https://github.com/funamitech/mastodon synced 2024-12-22 10:38:30 +09:00
YuruToot/app/controllers/admin/accounts_controller.rb

14 lines
179 B
Ruby

# frozen_string_literal: true
class Admin::AccountsController < ApplicationController
before_action :require_admin!
layout 'public'
def index
end
def show
end
end