21
1
Fork 0
mirror of https://github.com/Evolix/chexpire.git synced 2024-05-14 22:48:39 +02:00
chexpire/lib/tasks/notifications.rake
2018-08-02 00:29:53 +02:00

12 lines
329 B
Ruby

# Copyright (C) 2018 Colin Darie <colin@darie.eu>, 2018 Evolix <info@evolix.fr>
# License: GNU AGPL-3+ (see full text in LICENSE file)
# 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