refactored proxuauthstrategy and added some env variables

This commit is contained in:
alex-sviridov 2025-09-29 15:05:10 +02:00
parent 4875125ae9
commit 96c5a51eac
5 changed files with 103 additions and 126 deletions

View file

@ -351,6 +351,7 @@ class ApiRouter {
this.router.post('/validate-cron', MiscController.validateCronExpression.bind(this))
this.router.get('/auth-settings', MiscController.getAuthSettings.bind(this))
this.router.patch('/auth-settings', MiscController.updateAuthSettings.bind(this))
this.router.get('/test-proxy-header', MiscController.testProxyHeader.bind(this))
this.router.post('/watcher/update', MiscController.updateWatchedPath.bind(this))
this.router.get('/logger-data', MiscController.getLoggerData.bind(this))
}