mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-25 14:48:44 +08:00
12 lines
283 B
Ruby
Vendored
12 lines
283 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
module Reports::SystemPrivateMessages
|
|
extend ActiveSupport::Concern
|
|
|
|
class_methods do
|
|
def report_system_private_messages(report)
|
|
report.icon = "envelope"
|
|
private_messages_report report, TopicSubtype.system_message
|
|
end
|
|
end
|
|
end
|