mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-09 17:09:45 +08:00
10 lines
352 B
Ruby
10 lines
352 B
Ruby
namespace :notifications do
|
|
|
|
desc 'Creates new system notification for all active users'
|
|
task :new_release => :environment do
|
|
include NotificationsHelper
|
|
puts 'Creation of system notification for all active users with link to release notes'
|
|
create_system_notification('New release', 'http://scinote.net/docs/release-notes/')
|
|
end
|
|
|
|
end
|