0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-11 02:59:07 +08:00
discourse/app/controllers/admin/admin_controller.rb
2023-01-09 14:14:59 +00:00

10 lines
175 B
Ruby
Vendored

# frozen_string_literal: true
class Admin::AdminController < ApplicationController
requires_login
before_action :ensure_admin
def index
render body: nil
end
end