Philip H
1 year ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
4 additions and
1 deletions
-
src/lib/Server.js
|
@ -63,7 +63,10 @@ module.exports = class Server { |
|
|
|
|
|
|
|
|
return `"${LANG}"`; |
|
|
return `"${LANG}"`; |
|
|
})) |
|
|
})) |
|
|
|
|
|
.get('/api/ui-traffic-stats', (Util.promisify(async () => { |
|
|
|
|
|
return UI_TRAFFIC_STATS === 'true'; |
|
|
|
|
|
})) |
|
|
|
|
|
|
|
|
// Authentication
|
|
|
// Authentication
|
|
|
.get('/api/session', defineEventHandler((event) => { |
|
|
.get('/api/session', defineEventHandler((event) => { |
|
|
const requiresPassword = !!process.env.PASSWORD; |
|
|
const requiresPassword = !!process.env.PASSWORD; |
|
|