mirror of
https://github.com/redmine/redmine.git
synced 2025-11-04 20:35:57 +01:00
10 lines
180 B
Ruby
10 lines
180 B
Ruby
|
|
desc 'Removes watchers from what they can no longer view.'
|
||
|
|
|
||
|
|
namespace :redmine do
|
||
|
|
namespace :watchers do
|
||
|
|
task :prune => :environment do
|
||
|
|
Watcher.prune
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|