mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 05:07:53 +08:00
11 lines
163 B
Ruby
11 lines
163 B
Ruby
class Admin::AdminController < ApplicationController
|
|
|
|
before_action :ensure_logged_in
|
|
before_action :ensure_staff
|
|
|
|
def index
|
|
render body: nil
|
|
end
|
|
|
|
end
|