summaryrefslogtreecommitdiff
path: root/app/constants.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-09-22 21:27:02 -0400
committerFrederic Guillot <fred@kanboard.net>2015-09-22 21:27:02 -0400
commit2af45250c46b431823a9bfaa28e393c70fb931d8 (patch)
treea172be4a0b7b5b4f219459ea207a0f454c7dbffb /app/constants.php
parent9523ff44c04bf915e8b819ba8502ea5d20127d17 (diff)
Add config parameter PLUGINS_DIR
Diffstat (limited to 'app/constants.php')
-rw-r--r--app/constants.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/app/constants.php b/app/constants.php
index f25bd903..47e14c9e 100644
--- a/app/constants.php
+++ b/app/constants.php
@@ -4,6 +4,9 @@
defined('DEBUG') or define('DEBUG', false);
defined('DEBUG_FILE') or define('DEBUG_FILE', __DIR__.'/../data/debug.log');
+// Plugin directory
+defined('PLUGINS_DIR') or define('PLUGINS_DIR', __DIR__.'/../plugins');
+
// Application version
defined('APP_VERSION') or define('APP_VERSION', 'master');