Następująca attempt_login
metoda jest wywoływana przy użyciu Ajax po przesłaniu formularza logowania.
class AccessController < ApplicationController
[...]
def attempt_login
authorized_user = User.authenticate(params[:username], params[:password])
if authorized_user
session[:user_id] = authorized_user.id
session[:username] = authorized_user.username
flash[:notice] = "Hello #{authorized_user.name}."
redirect_to(:controller => 'jobs', :action => 'index')
else
[...]
end
end
end
Problem w tym, że redirect_to
to nie działa.
Jak byś to rozwiązał?
render :js => "window.location = '#{jobs_path}'"