implement asynchronous rake task for collect contact data from csv

This commit is contained in:
Oleg Hasjanov 2021-06-17 11:06:57 +03:00
parent cf450d373a
commit aaaae888bf
5 changed files with 92 additions and 3 deletions

View file

@ -0,0 +1,7 @@
namespace :collect_csv_data do
desc 'Import from csv registry business contact into BusinessRegistryContact model'
task business_contacts: :environment do
ScanCsvRegistryBusinnesContactsJob.perform_later
end
end