mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-11 00:22:53 +08:00
11 lines
190 B
Ruby
11 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
|