mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-16 02:05:04 +01:00
15 lines
405 B
JavaScript
15 lines
405 B
JavaScript
|
import { ok, methodNotAllowed } from 'lib/response';
|
||
|
|
||
|
export default async (req, res) => {
|
||
|
if (req.method === 'GET') {
|
||
|
return ok(res, {
|
||
|
basePath: process.env.BASE_PATH || '',
|
||
|
trackerScriptName: process.env.TRACKER_SCRIPT_NAME,
|
||
|
updatesDisabled: !!process.env.DISABLE_UPDATES,
|
||
|
telemetryDisabled: !!process.env.DISABLE_TELEMETRY,
|
||
|
});
|
||
|
}
|
||
|
|
||
|
return methodNotAllowed(res);
|
||
|
};
|