Destroy contact orphans task

This commit is contained in:
Martin Lensment 2015-03-25 16:37:18 +02:00
parent 67196217a8
commit 23bb24756c
3 changed files with 48 additions and 1 deletions

View file

@ -15,3 +15,7 @@ set :output, 'log/cron.log'
every 10.minutes do
runner 'ZonefileSetting.generate_zonefiles'
end
every 6.months, at: '1am' do
runner 'Contact.destroy_orphans'
end