otwarchive-sunsetarchive/app/views/inbox/_read_form.html.erb

7 lines
323 B
Text
Raw Permalink Normal View History

2026-03-17 05:16:49 +00:00
<% # expects inbox_comment and current_user %>
<%= form_tag user_inbox_path(current_user), method: 'put', class: 'ajax-remove' do %>
<%= hidden_field_tag 'read', true %>
<%= hidden_field_tag 'inbox_comments[]', inbox_comment.id, id: "inbox_comments_#{inbox_comment.id}" %>
<%= submit_tag ts('Mark Read') %>
<% end %>