view lib/tasks/watchers.rake @ 675:fccacd8505e3 live

Incomplete solution for Feature #238 - some issues in toggling (specially in the edit view).
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Tue, 13 Sep 2011 17:02:51 +0100
parents 513646585e45
children
line wrap: on
line source
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