diff options
author | Chocobozzz <me@florianbigard.com> | 2019-04-10 09:23:18 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-04-10 09:23:18 +0200 |
commit | 31b6ddf86652502e0c96d77fa10861ce4af11aa4 (patch) | |
tree | b94402972945699134b2a504af5d551124f0bf54 /server/controllers/api/config.ts | |
parent | 22834691abb6e74d31654ffd2ebeaaaa8ef3ac7b (diff) | |
download | PeerTube-31b6ddf86652502e0c96d77fa10861ce4af11aa4.tar.gz PeerTube-31b6ddf86652502e0c96d77fa10861ce4af11aa4.tar.zst PeerTube-31b6ddf86652502e0c96d77fa10861ce4af11aa4.zip |
Add ability to disable tracker
Diffstat (limited to 'server/controllers/api/config.ts')
-rw-r--r-- | server/controllers/api/config.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/server/controllers/api/config.ts b/server/controllers/api/config.ts index 5c4f455ee..0d7fc8625 100644 --- a/server/controllers/api/config.ts +++ b/server/controllers/api/config.ts | |||
@@ -136,6 +136,9 @@ async function getConfig (req: express.Request, res: express.Response) { | |||
136 | videos: { | 136 | videos: { |
137 | intervalDays: CONFIG.TRENDING.VIDEOS.INTERVAL_DAYS | 137 | intervalDays: CONFIG.TRENDING.VIDEOS.INTERVAL_DAYS |
138 | } | 138 | } |
139 | }, | ||
140 | tracker: { | ||
141 | enabled: CONFIG.TRACKER.ENABLED | ||
139 | } | 142 | } |
140 | } | 143 | } |
141 | 144 | ||