mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 06:30:15 +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
|