Add rake task to sync repositories

This commit is contained in:
Andrew Nesbitt 2018-08-17 13:08:19 +01:00
Родитель 1e009e4084
Коммит 692352147c
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -14,4 +14,9 @@ namespace :tasks do
task sync_subjects: :environment do
Notification.subjectable.find_each{|n| n.send(:update_subject, true); print '.' }
end
desc "Sync repositories"
task sync_repos: :environment do
Notification.find_each{|n| n.send(:update_repository); print '.' }
end
end