summaryrefslogtreecommitdiff
path: root/classes/config.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2021-02-23 09:01:27 +0300
committerAndrew Dolgov <[email protected]>2021-02-23 09:01:27 +0300
commit2ae0b7059f2ed56b92a8f396c63224b36f71df09 (patch)
tree3aa1f8e8b0980c12f2b9d2b37a73034b9108acd8 /classes/config.php
parent5229cc58b269bd04b2be7768107697063d95736e (diff)
cleanup some defined-stuff
Diffstat (limited to 'classes/config.php')
-rw-r--r--classes/config.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/classes/config.php b/classes/config.php
index 6f62863e9..e7455daab 100644
--- a/classes/config.php
+++ b/classes/config.php
@@ -47,6 +47,9 @@ class Config {
const MAX_CONDITIONAL_INTERVAL = "MAX_CONDITIONAL_INTERVAL";
const DAEMON_UNSUCCESSFUL_DAYS_LIMIT = "DAEMON_UNSUCCESSFUL_DAYS_LIMIT";
const LOG_SENT_MAIL = "LOG_SENT_MAIL";
+ const HTTP_PROXY = "HTTP_PROXY";
+ const FORBID_PASSWORD_CHANGES = "FORBID_PASSWORD_CHANGES";
+ const TTRSS_SESSION_NAME = "TTRSS_SESSION_NAME";
private const _DEFAULTS = [
Config::DB_TYPE => "pgsql",
@@ -92,6 +95,9 @@ class Config {
Config::MAX_CONDITIONAL_INTERVAL => 3600*12,
Config::DAEMON_UNSUCCESSFUL_DAYS_LIMIT => 30,
Config::LOG_SENT_MAIL => "",
+ Config::HTTP_PROXY => "",
+ Config::FORBID_PASSWORD_CHANGES => "",
+ Config::TTRSS_SESSION_NAME => "ttrss_sid",
];
private static $instance;