フォロ機能ーを作成しようとしているのですが、フォローボタンを押したときに下のようなエラーが表示されました。
なお、自分自身の投稿をフォローを制限する設定は行っていません。
何かご指摘いただければと思います。
<follows_controller.rb>
class FollowsController < ApplicationController def create @follow = current_user.follows.create(community_id: params[:community_id]) redirect_back(fallback_location: root_path) end def destroy @community = Community.find(params[:community_id]) @follow = current_user.follows.find_by(community_id: :@community_id) @follow.destroy redirect_back(fallback_location: root_path) end end
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。