1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-09 14:34:35 +00:00
2019-05-02 16:57:12 +10:00

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