mirror of
https://github.com/discourse/discourse.git
synced 2025-02-05 19:11:13 +00:00
13 lines
289 B
Ruby
13 lines
289 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Reports::NotifyUserPrivateMessages
|
|
extend ActiveSupport::Concern
|
|
|
|
class_methods do
|
|
def report_notify_user_private_messages(report)
|
|
report.icon = "envelope"
|
|
private_messages_report report, TopicSubtype.notify_user
|
|
end
|
|
end
|
|
end
|