コントローラーにログイン者でない投稿にeditを行うとトップページに返るようredirectを記述した
エラー分は出ずに、トップページに返らず、そのまま他の投稿の編集画面に行く
ruby
1```class PrototypesController < ApplicationController 2 before_action :move_to_index, except: [:index, :show] 3 before_action :authenticate_user!, except: [:index, :show] 4 def index 5 @prototypes = Prototype.all 6 end 7 8 def show 9 @prototype = Prototype.find(params[:id]) 10 @comment = Comment.new 11 @comments = @prototype.comments.includes(:user) 12 13 end 14 15 def new 16 @prototype = Prototype.new 17 end 18 19 def create 20 @prototype = Prototype.new(prototype_params) 21 if @prototype.save 22 redirect_to root_path 23 else 24 render :new 25 end 26 end 27 28 def edit 29 @prototype = Prototype.find(params[:id]) 30 31 end 32 33 def update 34 @prototype = Prototype.find(params[:id]) 35 @prototype.update(prototype_params) 36 if @prototype.save 37 redirect_to prototype_path 38 else 39 render :edit 40 end 41 42 end 43 44 def destroy 45 @prototype = Prototype.find(params[:id]) 46 @prototype.destroy 47 redirect_to root_path 48 end 49 50 51 52 private 53 def prototype_params 54 params.require(:prototype).permit(:title, :image, :catch_copy, :concept).merge(user_id: current_user.id) 55 end 56 57 def move_to_index 58 unless user_signed_in? 59 redirect_to action: :index 60 end 61 end 62 63end 64 65原因が分からず困っています
コードは<code> タグで囲って見やすくしてください。
あなたの回答
tips
プレビュー