Add missing events to comment thread

This commit is contained in:
Jason Zimdars
2025-10-29 10:51:47 -05:00
parent b20ddde5f6
commit e594f89919
+10 -2
View File
@@ -19,13 +19,21 @@ class Card::Eventable::SystemCommenter
when "card_unassigned"
"#{event.creator.name} <strong>unassigned</strong> from #{event.assignees.pluck(:name).to_sentence}."
when "card_closed"
"<strong>Moved</strong> to Done by #{ event.creator.name }"
"<strong>Moved</strong> to Done by #{event.creator.name}"
when "card_reopened"
"<strong>Reopened</strong> by #{ event.creator.name }"
"<strong>Reopened</strong> by #{event.creator.name}"
when "card_postponed"
"#{event.creator.name} <strong>moved</strong> this to “Not Now”"
when "card_auto_postponed"
"<strong>Closed</strong> as “Not Now” due to inactivity"
when "card_title_changed"
"#{event.creator.name} <strong>changed the title</strong> from “#{event.particulars.dig('particulars', 'old_title')}” to “#{event.particulars.dig('particulars', 'new_title')}”."
when "card_collection_changed"
"#{event.creator.name} <strong>moved</strong> this from “#{event.particulars.dig('particulars', 'old_collection')}” to “#{event.particulars.dig('particulars', 'new_collection')}”."
when "card_triaged"
"#{event.creator.name} <strong>moved</strong this to “#{event.particulars.dig('particulars', 'column')}"
when "card_sent_back_to_triage"
"#{event.creator.name} <strong>moved</strong> this back to “Maybe?”"
end
end
end