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.
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.
Copyright © 2021 Jogjafile Inc.
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.