Browse Source

Server.js: add UI_TRAFFIC_STATS

pull/880/head
Philip H 1 year ago
committed by GitHub
parent
commit
8c771b054c
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 5
      src/lib/Server.js

5
src/lib/Server.js

@ -63,7 +63,10 @@ module.exports = class Server {
return `"${LANG}"`;
}))
.get('/api/ui-traffic-stats', (Util.promisify(async () => {
return UI_TRAFFIC_STATS === 'true';
}))
// Authentication
.get('/api/session', defineEventHandler((event) => {
const requiresPassword = !!process.env.PASSWORD;

Loading…
Cancel
Save