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

后端 未结 5 894
佛祖请我去吃肉
佛祖请我去吃肉 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:19

    On the root page check to see if the user is signed in, and redirect based on that.

    redirect_to sign_up_path if current_user.nil?
    

    Alternatively, you could render different templates instead of a redirect, but I think it's cleaner to have a 1:1 mapping between urls and pages.

提交回复
热议问题