前提・実現したいこと
現在、railsの学習においてdeviseを先日実装を行い、それの応用としてユーザーのプロフィール画面作成と編集を実装しようと思い取り組んでいます。
しかし、なかなか実装がうまくいかず困っています。
具体的には
・新規作成をタップした際にログイン後に設定したはずであるトップページに遷移しまうこと
・既存のIDとパスによってログインを行った際にトップページに飛ばず再度ログインページに遷移してまうこと
・そもそもプロフの登録や編集のページに遷移できていないこと
発生している問題・エラーメッセージ
エラーメッセージは特に表示はありません。
該当のソースコード
rails
1#apprication_controller.rb 2class ApplicationController < ActionController::Base 3 def after_sign_in_path_for(resource) 4 if current_user 5 flash[:notice] = "ログインに成功しました" 6 registrations_path # 指定したいパスに変更 7 else 8 flash[:notice] = "新規登録完了しました。次に名前を入力してください" 9 new_profile_path # 指定したいパスに変更 10 end 11 end 12 13 protect_from_forgery with: :exception 14 # ログイン済ユーザーのみにアクセスを許可する 15 #before_action :authenticate_user! 16 17 # deviseコントローラーにストロングパラメータを追加する 18 before_action :configure_permitted_parameters, if: :devise_controller? 19 20 protected 21 def configure_permitted_parameters 22 # サインアップ時にnameのストロングパラメータを追加 23 devise_parameter_sanitizer.permit(:sign_up, keys: [:name]) 24 # アカウント編集の時にnameとprofileのストロングパラメータを追加 25 devise_parameter_sanitizer.permit(:account_update, keys: [:name, :profile]) 26 end 27end
rails
1#user_controller.rb 2class UsersController < ApplicationController 3 def show 4 @user = current_user 5 end 6end
rails
1#routes.rb 2Rails.application.routes.draw do 3 root 'comments#index' 4 get 'comments/index' 5 6 devise_for :users, controllers: { registrations: 'users/registrations' } 7 get 'users/show' => "users#show" 8 post 'registrations/user' => 'registrations#index' 9 get 'reservations/index' 10 11 get 'hotels/hello' 12 # For details on the DSL available within this file, see https://guides.rubyonrails.org/routing.html 13 resources :reservations 14 resources :registrations 15end
試したこと
ここに問題に対して試したことを記載してください。
ログイン後の遷移先を指定するために、def after_sign_in_path_forを指定しました。
しかしログイン後にトップページに遷移できませんでした。
deviseのみの実装の時はしっかりと遷移してくれていました。
補足情報(FW/ツールのバージョンなど)
以下のサイトは参考に実装しました。
https://qiita.com/akr03xxx/items/82ba45f7ef4fdbd5c702
あなたの回答
tips
プレビュー