如何使用Devise在sign_in之后重定向

时间:2013-05-01 18:44:58

标签: devise

当我使用设计登录时,我会保持同一个/ users / sign_in页面。我是否需要覆盖Devise会话控制器?或者还有其他方式吗?

1 个答案:

答案 0 :(得分:0)

你的application_controller.rb文件中的

class ApplicationController < ActionController::Base
  ...
  def after_sign_in_path_for (resource)
    root_path # or whatever path you want! 
  end
  ...
end