#概要
簡易的な掲示板を作成してます。
掲示板作成中に気づいた点があります。
バグでlocalhost:3000/contents/2/posts/1のようにURLを入力すると、Contentに紐づいていないPostsの詳細情報が確認できてしまうことがわかりました。
これを他サイトで質問した時のやりとりで疑問な点がありました。
他サイトで質問しましたが数日返信が返ってこなかった為こちらで質問させて下さい。
#自分の試した事
参照サイト
直接URLが打たれた場合、Projectに紐づいていないTaskの詳細情報はredirect before_actionなどを使用し
Task一覧に戻すというのが私の考えでした。
#該当コード
class PostsController < ApplicationController before_action :set_content before_action :set_post, only: %i[show edit update destroy] def index @posts = @content.posts end def show; end def new @post = Posts.new end def edit; end def create @post = Post.new(post_params) if @posst.save redirect_to [@content, @post], notice: 'Post was successfully created.' else render :new end end def update if @post.update(post_params) redirect_to [@content, @post], notice: 'Post was successfully updated.' else render :edit end end def destroy @post.destroy redirect_to content_posts_url, notice: 'Post was successfully destroyed.' end private def set_content @conent = Content.find(params[:content_id]) end def set_post @post = Post.find(params[:id]) end def post_params params.require(:post).permit(:title, :status, :deadline, :completion_date, :description).merge(content_id: params[:content_id]) end end
Rails.application.routes.draw do resources :projects do resources :tasks end resources :blogs do resources :comments, only: [:create, :destroy] end end
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/05/24 10:07
2021/05/24 10:09
2021/05/24 10:11
2021/05/24 15:17 編集