mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 02:40:53 -06:00
11 lines
175 B
Ruby
11 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
|