diff options
author | 2023-06-11 03:16:03 +0200 | |
---|---|---|
committer | 2023-06-11 03:16:03 +0200 | |
commit | 0a8fe57003e3247f063465c21555609b82a136d7 (patch) | |
tree | 98e6f846b81dd85f098d7e897b7cd2346c006213 /lib/bootstrap.php | |
parent | d9490c65181a090dfc743cd181caef2cc53ae8ef (diff) | |
download | rss-bridge-0a8fe57003e3247f063465c21555609b82a136d7.tar.gz rss-bridge-0a8fe57003e3247f063465c21555609b82a136d7.tar.zst rss-bridge-0a8fe57003e3247f063465c21555609b82a136d7.zip |
feat: enable bridges using env var (#3428)
* refactor: bridgefactory, add tests
* refactor: move defaultly enabled bridges to config
* refactor
* refactor
* feat: add support for enabling bridges with env var
Diffstat (limited to 'lib/bootstrap.php')
-rw-r--r-- | lib/bootstrap.php | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/bootstrap.php b/lib/bootstrap.php index 86182801..e05dd94a 100644 --- a/lib/bootstrap.php +++ b/lib/bootstrap.php @@ -29,12 +29,6 @@ const PATH_LIB_ACTIONS = __DIR__ . '/../actions/'; /** Path to the cache folder */ const PATH_CACHE = __DIR__ . '/../cache/'; -/** Path to the whitelist file */ -const WHITELIST = __DIR__ . '/../whitelist.txt'; - -/** Path to the default whitelist file */ -const WHITELIST_DEFAULT = __DIR__ . '/../whitelist.default.txt'; - /** URL to the RSS-Bridge repository */ const REPOSITORY = 'https://github.com/RSS-Bridge/rss-bridge/'; |