设计:多个注册表单的多重重定向

时间:2013-02-01 15:36:32

标签: ruby-on-rails devise routes

我有两个用于设计的注册表单,我想在注册时将用户重定向到两个不同的页面,具体取决于他们使用的注册表单。实现这一目标的最佳方法是什么?

1 个答案:

答案 0 :(得分:0)

尝试添加到application_controller.rb:

  def after_sign_up_path_for(user)
    user.something? ? dashboard_path : root_path
  end

不确定这是否有效,但如果不能,则可以覆盖Devise::RegistrationsController