mirror of
https://github.com/siteboon/claudecodeui.git
synced 2026-04-19 03:51:31 +00:00
Remove legacy backend routes that no longer have frontend or internal callers, including the old Claude/Codex MCP APIs, unused Cursor and Codex helper endpoints, stale TaskMaster detection/next/initialize routes, and unused command/project helpers. This reduces duplicated MCP behavior now handled by the provider-based MCP API, shrinks the exposed backend surface, and removes probe/service code that only existed for deleted endpoints. Add an MCP settings API audit document to capture the route-usage analysis and explain why the legacy MCP endpoints were considered safe to remove.
20 lines
605 B
JavaScript
20 lines
605 B
JavaScript
import express from 'express';
|
|
import { deleteCodexSession } from '../projects.js';
|
|
import { sessionNamesDb } from '../database/db.js';
|
|
|
|
const router = express.Router();
|
|
|
|
router.delete('/sessions/:sessionId', async (req, res) => {
|
|
try {
|
|
const { sessionId } = req.params;
|
|
await deleteCodexSession(sessionId);
|
|
sessionNamesDb.deleteName(sessionId, 'codex');
|
|
res.json({ success: true });
|
|
} catch (error) {
|
|
console.error(`Error deleting Codex session ${req.params.sessionId}:`, error);
|
|
res.status(500).json({ success: false, error: error.message });
|
|
}
|
|
});
|
|
|
|
export default router;
|