Add Gitea remote info to CLAUDE.md; implement vendor integrations and remove FortiGate modules

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Klein
2026-06-07 08:37:10 -04:00
parent 51eb3bf7c8
commit 09404db559
19 changed files with 95 additions and 521 deletions
+7 -4
View File
@@ -1,17 +1,20 @@
export const name = "DRC";
export const url = "https://wbte.drcedirect.com/PA/portals/pa";
export const url = "https://status.drcedirect.com/PA";
// status.drcedirect.com is a JS-rendered Angular app with no accessible API.
// Synthetic check against the PA INSIGHT portal instead.
const PROBE_URL = "https://wbte.drcedirect.com/PA/portals/pa";
// Note: /PA/portals/pa returns 500 — /PA/ is the correct probe path.
const PROBE_URL = "https://wbte.drcedirect.com/PA/";
export async function checkStatus() {
const res = await fetch(PROBE_URL, { method: "HEAD" });
return {
name,
status: "operational",
message: `PA INSIGHT portal responding (HTTP ${res.status}).`,
status: res.ok ? "operational" : "degraded",
message: res.ok
? `PA INSIGHT portal responding (HTTP ${res.status}).`
: `Unexpected response from PA INSIGHT portal (HTTP ${res.status}).`,
lastUpdated: new Date().toISOString(),
};
}