When running `ensure_login_required` it should always happen prior to `check_xhr` cause check xhr will trigger a 200 response
11 lines
203 B
Ruby
11 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
|