mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 20:02:46 +08:00
13 lines
177 B
Ruby
13 lines
177 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Admin::AdminController < ApplicationController
|
|
|
|
requires_login
|
|
before_action :ensure_staff
|
|
|
|
def index
|
|
render body: nil
|
|
end
|
|
|
|
end
|