mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 19:00:32 -06: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
|