2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-06 10:50:21 +08:00
discourse/app/controllers/admin/admin_controller.rb
Sam f2e7b74d88 FIX: don't return 200s when login is required to paths
When running `ensure_login_required` it should always happen prior to
`check_xhr` cause check xhr will trigger a 200 response
2018-02-01 12:26:45 +11:00

10 lines
203 B
Ruby

class Admin::AdminController < ApplicationController
prepend_before_action :check_xhr, :ensure_logged_in
prepend_before_action :check_xhr, :ensure_staff
def index
render body: nil
end
end