diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2025-05-02 13:26:58 +0300 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2025-05-02 13:26:58 +0300 |
| commit | aeca30cb0c6b26c569f66c5043690d5528fc481b (patch) | |
| tree | 38d4659e8539d7e8588306c1fd36d4d21f453719 /classes/Config.php | |
| parent | a51c1d5176d0285a4fecc6e1e84d9f7dc4abaca5 (diff) | |
drop SIMPLE_UPDATE_MODE, limit housekeeping and updates to background processes
Diffstat (limited to 'classes/Config.php')
| -rw-r--r-- | classes/Config.php | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/classes/Config.php b/classes/Config.php index 1afa4f043..c413317be 100644 --- a/classes/Config.php +++ b/classes/Config.php @@ -53,13 +53,6 @@ class Config { * your tt-rss directory protected by other means (e.g. http auth). */ const SINGLE_USER_MODE = "SINGLE_USER_MODE"; - /** enables fallback update mode where tt-rss tries to update feeds in - * background while tt-rss is open in your browser. - * if you don't have a lot of feeds and don't want to or can't run - * background processes while not running tt-rss, this method is generally - * viable to keep your feeds up to date. */ - const SIMPLE_UPDATE_MODE = "SIMPLE_UPDATE_MODE"; - /** use this PHP CLI executable to start various tasks */ const PHP_EXECUTABLE = "PHP_EXECUTABLE"; @@ -205,7 +198,6 @@ class Config { Config::DB_PORT => [ "5432", Config::T_STRING ], Config::SELF_URL_PATH => [ "https://example.com/tt-rss", Config::T_STRING ], Config::SINGLE_USER_MODE => [ "", Config::T_BOOL ], - Config::SIMPLE_UPDATE_MODE => [ "", Config::T_BOOL ], Config::PHP_EXECUTABLE => [ "/usr/bin/php", Config::T_STRING ], Config::LOCK_DIRECTORY => [ "lock", Config::T_STRING ], Config::CACHE_DIR => [ "cache", Config::T_STRING ], |