Search code examples
ruby-on-railsruby-on-rails-3mailboxer

Cannot mark a message as read while using mailboxer in rails


How can I mark any message as read in mailboxer?

Even if I add the line: <% conversation.mark_as_read(current_user) %> in my view, it does not solve my problem.


Solution

  • In case anybody else has this issue in the future, the solution is to only put code like what is in the original question in something like MessagesController, and to create a form which points to that action.