Don't use hard-coded sign_in path

This commit is contained in:
Robert Speicher 2015-05-04 14:18:32 -04:00
parent c84f1240d4
commit 125ee5262a
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ class SessionsController < Devise::SessionsController
# Prevent a 'you are already signed in' message directly after signing:
# we should never redirect to '/users/sign_in' after signing in successfully.
unless redirect_path == '/users/sign_in'
unless redirect_path == new_user_session_path
store_location_for(:redirect, redirect_path)
end