0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

何重にも条件分岐する話

Posted at

条件は3つ。
1,未ログインユーザーは編集、更新、削除ページに入るとログインページにリダイレクトされて
2,編集、更新、削除ページにいくとトップページに遷移されて
3,ログイン済みであっても商品出品者(@item.user)ではない場合はトップページにリダイレクトされる

Class ItemsController < ApplicationController
  before_action :authenticate_user!, only: [:edit, :update, :destroy] # 未ログインユーザーはログインページにリダイレクト
  before_action :move_to_index, only: {:edit :update, :destroy] 3アクションはmove_to_index実行

中略

def move_to_index
    return unless current_user == @item.user # ログイン済みでも出品者でない場合はトップページにリダイレクト
    redirect_to root_path
end  

実際はこれにもう一つ条件分岐がさらに重なったものでした。
こんがらがってしまいました。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?