diff --git a/mock-api/Handler.ts b/mock-api/Handler.ts index 6c61afea6..ac9e0b864 100644 --- a/mock-api/Handler.ts +++ b/mock-api/Handler.ts @@ -2370,6 +2370,7 @@ router // SYSTEM router .get(SYSTEM_STATUS_ENDPOINT, () => new Response(JSON.stringify(system_status), { headers })) + .get(SECURITY_SETTINGS_ENDPOINT, () => new Response(JSON.stringify(security_settings), { headers })) .post(SECURITY_SETTINGS_ENDPOINT, async (request: any) => { security_settings = await request.json(); return new Response('OK', { status: 200 });