标签: devise
当我使用设计登录时,我会保持同一个/ users / sign_in页面。我是否需要覆盖Devise会话控制器?或者还有其他方式吗?
答案 0 :(得分:0)
:
class ApplicationController < ActionController::Base ... def after_sign_in_path_for (resource) root_path # or whatever path you want! end ... end