Browse Source

fixup: Server.js

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

2
src/lib/Server.js

@ -59,10 +59,12 @@ module.exports = class Server {
setHeader(event, 'Content-Type', 'application/json');
return `"${LANG}"`;
}))
.get('/api/ui-traffic-stats', defineEventHandler((event) => {
setHeader(event, 'Content-Type', 'application/json');
return `"${UI_TRAFFIC_STATS}"`;
}))
.get('/api/ui-chart-type', defineEventHandler((event) => {
setHeader(event, 'Content-Type', 'application/json');
return `"${UI_CHART_TYPE}"`;

Loading…
Cancel
Save