21
1
Fork 0
mirror of https://github.com/Evolix/chexpire.git synced 2024-05-05 10:15:09 +02:00
chexpire/lib/tasks/notifications.rake
2018-06-05 15:45:05 +02:00

9 lines
193 B
Ruby

# require "services/notifier"
namespace :notifications do
desc "Send all notifications after checks have been performend"
task send_all: :environment do
Notifier.process_all
end
end