Devise: Sign Up Page as Welcome/Landing Page then to User Profile

后端 未结 5 722
佛祖请我去吃肉
佛祖请我去吃肉 2021-02-01 08:57

Using devise, how do i make my Sign Up as my landing/welcome page and then after sign up they go inside the site to the Profile/signed in area?

I am trying to figure out

5条回答
  •  谎友^
    谎友^ (楼主)
    2021-02-01 09:23

    Another approach is to modify devise. Edit devise_gem_path/lib/devise/failure_app.rb and replace the two occurrences in the redirect_url method of:

    :"new_#{scope}_session_path"
    

    with:

    :"new_#{scope}_registration_path"
    

    A less destructive solution would make redirect_url's response more configurable.

提交回复
热议问题