前提・実現したいこと
Ruby on Rails でwebアプリを制作しています。
投稿に対して非表示ボタンを押すと、その投稿及び投稿したユーザーが投稿したもの全てを非表示にしたいにですが
発生している問題・エラーメッセージ
エラーメッセージ
該当のソースコード
class Public::PostsController < ApplicationController before_action :authenticate_customer! before_action :ensure_correct_customer, only: [:edit, :update, :destroy] def index @posts = Post.page(params[:page]).reverse_order # current_customer.muting = [2, 3, 4] @mute_posts = current_customer.mutings.each{ |mute| # @posts.select{ |posts| post != mute } } # binding.pry # @mute_post = current_customer. # current_customer.muting = [1, 2, 3] # sum = current_customer.muting.map{ |mute| # Post.where(user_id: mute) # end # Post.where(customer_id: ) # @post = sum end view <% @posts.each do |post| %> <tr id="post_<%= post.id %>"> <th><%= post.created_at.strftime("%Y/%m/%d %H:%M:%S") %></th> <th><%= attachment_image_tag(post, :image, :fill, 50, 50, fallback: "no-image.jpg") %></th> <th><%= post.text %></th> <% if post.customer == current_customer %> <td><%= link_to '編集する', edit_post_path(post), class: "btn btn-sm btn-success" %></td> <td><%= link_to '削除する', post_path(post), method: :delete, data: { confirm: '本当に消しますか?' }, class: "btn btn-sm btn-danger" %></td> <% else %> <td class="sympathy-btn"><%= render "public/sympathies/sympathy-btn", post: post %></td> <td class="cheer-btn"><%= render "public/cheers/cheer-btn", post: post %></td> <% if current_customer.muting?(post.customer) %> <td><%#= link_to "非表示を解除する", customer_relationships_path(post.customer.id), method: :delete, class: "btn btn-primary" %></td> <% else %> <td><%= link_to "非表示にする", customer_relationships_path(post.customer.id), method: :post, class: "btn btn-success" %></td> <% end %> <% end %>
試したこと
フォロー機能のような関係性を作り、『この投稿をしたユーザーの投稿を全て非表示にする』という条件をviewに書いてみたのですがエラーしか出なかったので、controllerに書こうとしたのですが、そちらもうまくいきませんでした。
補足情報(FW/ツールのバージョンなど)
rails version 5.2.6
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。