diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-12-02 17:50:06 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-12-02 17:50:06 -0500 |
commit | 9ed80ff8ef233e80f3f171ae5d13dca074519122 (patch) | |
tree | b9628b7a5b6a78f34bf86f1b963a2f098a4d8308 | |
parent | 6c43ab7dfcf8f5ff47d98746c02515b20135f5e3 (diff) |
Update config.default.php
-rw-r--r-- | config.default.php | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/config.default.php b/config.default.php index b9dc8d77..04728f3e 100644 --- a/config.default.php +++ b/config.default.php @@ -19,6 +19,12 @@ define('LOG_FILE', DATA_DIR.DIRECTORY_SEPARATOR.'debug.log'); // Plugins directory define('PLUGINS_DIR', 'plugins'); +// Plugins directory URL +define('PLUGIN_API_URL', 'https://kanboard.net/plugins.json'); + +// Enable/Disable plugin installer +define('PLUGIN_INSTALLER', true); + // Available cache drivers are "file" and "memory" define('CACHE_DRIVER', 'memory'); @@ -196,7 +202,7 @@ define('ENABLE_URL_REWRITE', false); // Hide login form, useful if all your users use Google/Github/ReverseProxy authentication define('HIDE_LOGIN_FORM', false); -// Disabling logout (for external SSO authentication) +// Disabling logout (useful for external SSO authentication) define('DISABLE_LOGOUT', false); // Enable captcha after 3 authentication failure |