mirror of
https://github.com/discourse/discourse.git
synced 2025-05-23 20:21:25 +08:00
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
This commit is contained in:
@ -1,8 +1,8 @@
|
||||
require_dependency 'rate_limiter'
|
||||
|
||||
class AboutController < ApplicationController
|
||||
prepend_before_action :check_xhr, :ensure_logged_in, only: [:live_post_counts]
|
||||
skip_before_action :check_xhr, only: [:index]
|
||||
before_action :ensure_logged_in, only: [:live_post_counts]
|
||||
|
||||
def index
|
||||
return redirect_to path('/login') if SiteSetting.login_required? && current_user.nil?
|
||||
|
Reference in New Issue
Block a user