discourse/app/controllers/admin/admin_controller.rb

13 lines
177 B
Ruby
Raw Normal View History

2019-05-02 01:57:12 -05:00
# frozen_string_literal: true
2013-02-05 13:16:51 -06:00
class Admin::AdminController < ApplicationController
requires_login
before_action :ensure_staff
2013-02-05 13:16:51 -06:00
def index
render body: nil
2013-02-05 13:16:51 -06:00
end
end