mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 08:38:42 +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
|