Ruby on rails でアプリを作成しています。(初心者です)
ユーザー登録時に確認画面を入れて、確定後ホーム画面に遷移させたいと考えています。
遷移時に下記のエラーが出ます。この対処法を教えていただきたいです。
No route matches [GET] "/users/sign_up/complete"
routes.rbには下記のように入れています。
Rails.application.routes.draw do mount RailsAdmin::Engine => '/admin', as: 'rails_admin' root 'top#index' get 'top/index' devise_for :users, :controllers => { :registrations => 'users/registrations' } devise_scope :user do post 'users/sign_up/confirm' => 'users/registrations#confirm' post 'users/sign_up/complete' => 'users/registrations#complete' end end
数秒後に遷移する機能も付けたいと考えていますので、参考サイトなどあれば教えていただきたいです。
よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2020/04/08 03:54