summaryrefslogtreecommitdiff
path: root/config.default.php
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2014-08-17 09:43:57 -0700
committerFrédéric Guillot <fred@kanboard.net>2014-08-17 09:43:57 -0700
commiteb76e1e530627eae34c74f0db3ed33d9a0da6810 (patch)
treefb90ae9e1a2977b0f2ab5feef706949aebfc50fc /config.default.php
parent44e91721b0edec28b4e37d3c6b8847854c108233 (diff)
Highlight recently modified tasks on board (pull-request #201)
Diffstat (limited to 'config.default.php')
-rw-r--r--config.default.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/config.default.php b/config.default.php
index b79bad94..9e597488 100644
--- a/config.default.php
+++ b/config.default.php
@@ -21,6 +21,9 @@ define('BOARD_PUBLIC_CHECK_INTERVAL', 60);
// Board refresh frequency in seconds (the value 0 disable this feature, 10 seconds by default)
define('BOARD_CHECK_INTERVAL', 10);
+// Period (in second) to consider a task was modified recently (0 to disable, 2 days by default)
+define('RECENT_TASK_PERIOD', 48*60*60);
+
// Database driver: sqlite or mysql (sqlite by default)
define('DB_DRIVER', 'sqlite');