mirror of
https://github.com/discourse/discourse.git
synced 2025-09-06 10:50:21 +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:
parent
7d2283167a
commit
f2e7b74d88
28 changed files with 81 additions and 59 deletions
|
@ -1,7 +1,7 @@
|
|||
class EmailController < ApplicationController
|
||||
skip_before_action :check_xhr, :preload_json, :redirect_to_login_if_required
|
||||
layout 'no_ember'
|
||||
|
||||
skip_before_action :check_xhr, :preload_json, :redirect_to_login_if_required
|
||||
before_action :ensure_logged_in, only: :preferences_redirect
|
||||
|
||||
def preferences_redirect
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue