summaryrefslogtreecommitdiffstats
path: root/lib/tasks/watchers.rake
blob: caa9e05f656bc7838e3cbadce2953470c0d12ff9 (plain)
1
2
3
4
5
6
7
8
9
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