我在登录后尝试重定向,除了一些路径。
def after_sign_in_path_for(user)
if request.fullpath =~ /some_path/
request.fullpath
elsif # redirect accordingly
# ...
else ...
...
end
end
它正在做一个重定向循环。
有任何想法吗?
我在登录后尝试重定向,除了一些路径。
def after_sign_in_path_for(user)
if request.fullpath =~ /some_path/
request.fullpath
elsif # redirect accordingly
# ...
else ...
...
end
end
它正在做一个重定向循环。
有任何想法吗?