Class: Decidim::DownloadYourDataExportJob
- Inherits:
-
ApplicationJob
- Object
- ActiveJob::Base
- ApplicationJob
- Decidim::DownloadYourDataExportJob
- Defined in:
- decidim-core/app/jobs/decidim/download_your_data_export_job.rb
Instance Method Summary collapse
Instance Method Details
#perform(user, export_format = ::Decidim::DownloadYourDataExporter::DEFAULT_EXPORT_FORMAT) ⇒ Object
7 8 9 10 |
# File 'decidim-core/app/jobs/decidim/download_your_data_export_job.rb', line 7 def perform(user, export_format = ::Decidim::DownloadYourDataExporter::DEFAULT_EXPORT_FORMAT) @export = DownloadYourDataExporter.new(user, "download_your_data", export_format).export ExportMailer.download_your_data_export(user, @export).deliver_later end |