mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 13:56:50 +08:00
12 lines
190 B
Ruby
12 lines
190 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Reports::Emails
|
|
extend ActiveSupport::Concern
|
|
|
|
class_methods do
|
|
def report_emails(report)
|
|
report_about report, EmailLog
|
|
end
|
|
end
|
|
end
|