前提・実現したいこと
現在簡単なチャットアプリを作っています。ログイン後に、マイページに遷移するようにしたいのですが、
ruby
1Rails.application.routes.draw do 2 devise_for :users 3 # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html 4 root 'users#show' 5 resources :users,only: [:show,:index] 6end
このようにroot_pathを設定してしまうと、本来'users/:id'である:idにuserのidを渡すことができません。
どなたかよろしくお願いします。
環境: MacOS AWS
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。