前提・実現したいこと
現在railsで投稿アプリを作成しています。
ログイン方法を二つ作り(user, coach)どちらにもauthenticate_user!のようなバリデーションをかけたいです。しかし現状ではuserが優先されてしまっていて実装できません。解決策を教えていただけると幸いです。
rails初心者です。お力添えをよろしくお願いいたします。
該当のソースコード
commentコントローラー class CommentsController < ApplicationController before_action :authenticate_user!, except: [:redirect_root] # before_action :redirect_root # before_action :authenticate_coach! def index @commented = Comment.all @comment = Comment.new @debate = Debate.find(params[:debate_id]) if coach_signed_in? @comments = @debate.comments.includes(:coach) else user_signed_in? @comments = @debate.comments.includes(:user) end end def create @commented = Comment.all @debate = Debate.find(params[:debate_id]) if coach_signed_in? @comment = @debate.comments.new(coach_comment_params) else user_signed_in? @comment = @debate.comments.new(user_comment_params) end if @comment.save redirect_to debate_comments_path(@debate) else @comments = @debate.comments.includes(:coach) @comments = @debate.comments.includes(:user) render :index end end private def coach_comment_params params.require(:comment).permit(:content, :image, :video).merge(coach_id: current_coach.id) end def user_comment_params params.require(:comment).permit(:content, :image, :video).merge(user_id: current_user.id) end def redirect_root if coach_signed_in? end end end
試したこと
・before_actionでuser, coachの二つを並べた。
・redirect_rootを定義して、exceptをredirect_rootに指定した。
以上の2点を試しましたが、解決には至らなかったです。
補足情報(FW/ツールのバージョンなど)
拙い文章で申し訳ありません。
もし何か不足している、知りたいコードがありましたら、コメントをお願いします。
よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/01/06 02:38
2021/01/06 02:42 編集
2021/01/06 02:42
2021/01/06 02:45