feat: add cc-connect start/stop controls
Deploy Dashboard (Dev) / deploy-dev (push) Has been cancelled
Deploy Dashboard (Dev) / deploy-dev (push) Has been cancelled
Add backend start/stop endpoints and wire cc-connect UI controls to toggle container state with post-action health refresh and clear error handling. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -147,6 +147,14 @@ export function getCcConnectHealth() {
|
||||
return get("/cc-connect/health");
|
||||
}
|
||||
|
||||
export function startCcConnect() {
|
||||
return post("/cc-connect/start");
|
||||
}
|
||||
|
||||
export function stopCcConnect() {
|
||||
return post("/cc-connect/stop");
|
||||
}
|
||||
|
||||
export function getInfoEngineItems(params = {}) {
|
||||
const query = new URLSearchParams();
|
||||
if (params.limit !== undefined) query.set("limit", String(params.limit));
|
||||
|
||||
Reference in New Issue
Block a user