mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-07 08:54:19 +08:00
10 lines
175 B
Ruby
10 lines
175 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Admin::AdminController < ApplicationController
|
|
requires_login
|
|
before_action :ensure_admin
|
|
|
|
def index
|
|
render body: nil
|
|
end
|
|
end
|