diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2014-06-25 09:29:07 +0200 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2014-06-25 11:34:31 +0200 |
commit | fc1db28c9b1b13c5b9e6baf6d24963081f18f017 (patch) | |
tree | d4adc2a358772396febfbc3a9f7c7e8a25536d20 /web/lib/routing.inc.php | |
parent | 8260111bcce49b73bd4973ae80296c913af2631d (diff) | |
download | aurweb-fc1db28c9b1b13c5b9e6baf6d24963081f18f017.tar.xz |
Allow for closing package requests
This allows Trusted Users to close package requests via the request
list. Also, entries are now sorted such that open requests are shown
before closed requests.
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/lib/routing.inc.php')
-rw-r--r-- | web/lib/routing.inc.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/web/lib/routing.inc.php b/web/lib/routing.inc.php index 5836a13..2fa3e1f 100644 --- a/web/lib/routing.inc.php +++ b/web/lib/routing.inc.php @@ -21,6 +21,7 @@ $ROUTES = array( $PKG_PATH = '/packages'; $PKGBASE_PATH = '/pkgbase'; +$PKGREQ_PATH = '/requests'; $USER_PATH = '/account'; function get_route($path) { @@ -55,6 +56,11 @@ function get_pkgbase_route() { return $PKGBASE_PATH; } +function get_pkgreq_route() { + global $PKGREQ_PATH; + return $PKGREQ_PATH; +} + function get_pkg_uri($pkgname) { global $USE_VIRTUAL_URLS; global $PKG_PATH; |