2

メールボックスの gem をセットアップしましたが、/conversations にアクセスするとundefined method参加者が表示されます' ` エラーはインデックス付きの Conversations コントローラーを指しています。ユーザーのすべての受信トレイ メッセージを格納するインデックス アクションに、会話インスタンス変数を追加しました。

誰かが私の定義のどこが間違っていたかを見つけることができますか?

会話コントローラー:

 helper_method :mailbox, :conversation

  def index
      @conversations ||= current_user.mailbox.inbox.all
    end

    def reply
      current_user.reply_to_conversation(conversation, *message_params(:body, :subject))
      redirect_to conversation
    end

    def trash_folder     
      @trash ||= current_user.mailbox.trash.all  
       end 


    def create
      recipient_emails = conversation_params(:recipients).split(',')
      recipients = User.where(email: recipient_emails).all

      conversation = current_user.
        send_message(recipients, *conversation_params(:body, :subject)).conversation

      redirect_to conversation
    end

    def reply
      current_user.reply_to_conversation(conversation, *message_params(:body, :subject))
      redirect_to conversation
    end

    def trash
      conversation.move_to_trash(current_user)
      redirect_to :conversations
    end

    def untrash
      conversation.untrash(current_user)
      redirect_to :conversations
    end

    private

    def mailbox
      @mailbox ||= current_user.mailbox
    end

    def conversation
      @conversation ||= mailbox.conversations.find(params[:id])
    end

    def conversation_params(*keys)
      fetch_params(:conversation, *keys)
    end

    def message_params(*keys)
      fetch_params(:message, *keys)
    end

    def fetch_params(key, *subkeys)
      params[key].instance_eval do
        case subkeys.size
        when 0 then self
        when 1 then self[subkeys.first]
        else subkeys.map{|k| self[k] }
        end
      end
    end
  end

ルート:

resources :users do |user|

 end

 resources :messages do
   member do
     post :new
   end
 end
 resources :conversations do
   member do
     post :reply
     post :trash
     post :untrash
   end
  collection do
     get :trashbin
     post :empty_trash
  end
end
4

1 に答える 1