summaryrefslogtreecommitdiffstats
path: root/web/lib
diff options
context:
space:
mode:
authorLukas Fleischer <archlinux@cryptocrack.de>2014-06-25 10:16:00 +0200
committerLukas Fleischer <archlinux@cryptocrack.de>2014-06-25 11:35:42 +0200
commitd8dbad0c3ec28f531bb057fea8b76e3faa235da6 (patch)
tree5613f3c4a42841fbe3b850d14f9effd3301b4146 /web/lib
parentfc1db28c9b1b13c5b9e6baf6d24963081f18f017 (diff)
downloadaurweb-d8dbad0c3ec28f531bb057fea8b76e3faa235da6.tar.xz
Highlight package requests after 14 days
Automatically highlight package requests after a configurable period of time. Defaults to 14 days. Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web/lib')
-rw-r--r--web/lib/config.inc.php.proto3
1 files changed, 3 insertions, 0 deletions
diff --git a/web/lib/config.inc.php.proto b/web/lib/config.inc.php.proto
index 10ed07e..a9137f1 100644
--- a/web/lib/config.inc.php.proto
+++ b/web/lib/config.inc.php.proto
@@ -62,3 +62,6 @@ $MAX_RPC_RESULTS = 5000;
# Mailing list to send package request notifications to.
$AUR_REQUEST_ML = "aur-general@archlinux.org";
+
+# Time to wait until a package request is due.
+$REQUEST_IDLE_TIME = 60 * 60 * 24 * 14;