Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class Users::RegistrationsController < Devise::RegistrationsController
- include ApplicationHelper
- layout "signup_layout", only: [:create, :new]
- def create
- super
- end
- def new
- super
- end
- def edit
- super
- end
- def after_sign_up_path_for(user)
- @user_id=user.id
- redirect_to "/signup/create_company"
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment