mirror of
https://github.com/discourse/discourse.git
synced 2026-08-11 02:59:07 +08:00
10 lines
175 B
Ruby
Vendored
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
|