summaryrefslogtreecommitdiffstats
path: root/packages/urls.py
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2011-01-21 00:31:37 +0100
committerDan McGee <dan@archlinux.org>2011-01-21 00:31:37 +0100
commit7d043be0b3d090d2f675af5b86856693aa73e787 (patch)
tree01ee8235193e00821c13ed994935c31b019f385a /packages/urls.py
parent523a15f81e819379d1d9ae8412ebd8a7c017a512 (diff)
downloadarchweb-7d043be0b3d090d2f675af5b86856693aa73e787.tar.gz
archweb-7d043be0b3d090d2f675af5b86856693aa73e787.tar.xz
Add an 'unflag all' option
This allows the exact opposite of the 'flag' option as presented to the end user, especially helpful for split packages. The original single unflag package option is also still available. Implements FS#22520. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'packages/urls.py')
-rw-r--r--packages/urls.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/urls.py b/packages/urls.py
index c9006a1..b7ce5c7 100644
--- a/packages/urls.py
+++ b/packages/urls.py
@@ -6,6 +6,7 @@ package_patterns = patterns('packages.views',
(r'^maintainer/$', 'getmaintainer'),
(r'^flag/$', 'flag'),
(r'^unflag/$', 'unflag'),
+ (r'^unflag/all/$', 'unflag_all'),
(r'^download/$', 'download'),
)