2011-11-01 68 views
0

我需要重寫設計,當用戶註冊或登錄時將他重定向到show_home_url而不是root_path(home#index)。但我不確定是否需要after_sign_up_path_forafter_inactive_sign_up_path_for或者任何人都可以選擇顯示我如何實現?我是一個紅寶石開墾者。這裏是Devise registration controller非常感謝。如何重寫設計重定向?

 class RegistrationsController < Devise::RegistrationsController 

     def after_inactive_sign_up_path_for(resource) 

     end 

     def after_sign_up_path_for(resource) 

     end 

     end 

回答