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:
@@ -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(),
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user