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
+5 -2
View File
@@ -37,11 +37,14 @@ function probe(host) {
export async function checkStatus() {
const statusCode = await probe(HOST);
const ok = statusCode >= 200 && statusCode < 400;
return {
name,
status: "operational",
message: `Mail portal responding (HTTP ${statusCode}).`,
status: ok ? "operational" : "degraded",
message: ok
? `Mail portal responding (HTTP ${statusCode}).`
: `Unexpected response from mail portal (HTTP ${statusCode}).`,
lastUpdated: new Date().toISOString(),
};
}