Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两个要设计的注册表单,我想在注册时将用户重定向到两个不同的页面,具体取决于他们使用的注册表单。实现这一目标的最佳方法是什么?
尝试添加到 application_controller.rb:
def after_sign_up_path_for(user) user.something? ? dashboard_path : root_path end
不确定这是否会起作用,但如果不起作用,您可以覆盖Devise::RegistrationsController。
Devise::RegistrationsController