This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/models/concerns/reports/emails.rb
2020-10-29 11:49:09 -05:00

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