有没有办法让我们在注册后配置设计以转到特定页面?喜欢的东西after_sign_up_path
。我希望用户在注册后首次登录时更新他们的个人资料,所以想将他们重定向到edit_user_path(current_user)
.
问问题
445 次
2 回答
0
不确定您是否已经知道
但是有一种after_sign_up_path_for
方法可以现在覆盖
https://github.com/plataformatec/devise/blob/master/app/controllers/devise/registrations_controller.rb#L98
于 2013-01-16T01:33:07.487 回答
0
知道了。下面是我如何实现它。
scope = Devise::Mapping.find_scope!(user)
sign_in(scope, user, {})
redirect_to edit_user_path(current_user)
于 2012-09-01T19:22:31.740 回答