initial bzr support

This commit is contained in:
Rob Vermaas
2011-02-08 13:11:08 +00:00
parent e17fec61b2
commit c645fa55ff
4 changed files with 93 additions and 5 deletions

View File

@ -314,6 +314,9 @@ sub clearvcscache : Chained('admin') Path('clear-vcs-cache') Args(0) {
print "Clearing subversion cache\n";
$c->model('DB::CachedSubversionInputs')->delete_all;
print "Clearing bazaar cache\n";
$c->model('DB::CachedBazaarInputs')->delete_all;
$c->res->redirect("/admin");
}