discourse/app/models/concerns/reports/emails.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
190 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Reports::Emails
extend ActiveSupport::Concern
class_methods do
def report_emails(report)
report_about report, EmailLog
end
end
end