Skip to content
Snippets Groups Projects
Commit 33126227 authored by Robert Speicher's avatar Robert Speicher
Browse files

Remove check_token_auth filter

Because of the way ExtractPaths works, `params[:format]` wouldn't
necessarily be available at the time this filter was running, and so it
would erroneously redirect to `new_user_session_path`
parent 10489172
No related branches found
No related tags found
1 merge request!1568Routing overhaul
Loading
Loading
@@ -2,7 +2,6 @@ class ApplicationController < ActionController::Base
before_filter :authenticate_user!
before_filter :reject_blocked!
before_filter :set_current_user_for_mailer
before_filter :check_token_auth
before_filter :set_current_user_for_observers
before_filter :dev_tools if Rails.env == 'development'
 
Loading
Loading
@@ -26,13 +25,6 @@ class ApplicationController < ActionController::Base
 
protected
 
def check_token_auth
# Redirect to login page if not atom feed
if params[:private_token].present? && params[:format] != 'atom'
redirect_to new_user_session_path
end
end
def reject_blocked!
if current_user && current_user.blocked
sign_out current_user
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment