view vendor/plugins/redmine_checkout/lib/tasks/set_default.rake @ 647:525f48af3f54 feature_36

Shorten email address in search results, showing domain only (text too long otherwise) Apply min-width to search results box Remove initialisation of search results in edit action (fixing #287)
author Chris Cannam <chris.cannam@soundsoftware.ac.uk>
date Fri, 09 Sep 2011 12:24:45 +0100
parents 020926a36823
children
line wrap: on
line source
namespace :redmine do
  namespace :plugins do
    namespace :redmine_checkout do
      desc "Sets all repositories to inherit the default setting for the checkout URL."
      task :set_default => :environment do
        Repository.all.each{|r| r.update_attributes(:checkout_overwrite => "0")}
      end
    end
  end
end