mirror of
https://github.com/AutoMaker-Org/automaker.git
synced 2026-02-04 09:13:08 +00:00
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
33 lines
1004 B
TypeScript
33 lines
1004 B
TypeScript
/**
|
|
* POST /verify-feature endpoint - Verify a feature
|
|
*/
|
|
|
|
import type { Request, Response } from 'express';
|
|
import type { AutoModeService } from '../../../services/auto-mode-service.js';
|
|
import { getErrorMessage, logError } from '../common.js';
|
|
|
|
export function createVerifyFeatureHandler(autoModeService: AutoModeService) {
|
|
return async (req: Request, res: Response): Promise<void> => {
|
|
try {
|
|
const { projectPath, featureId } = req.body as {
|
|
projectPath: string;
|
|
featureId: string;
|
|
};
|
|
|
|
if (!projectPath || !featureId) {
|
|
res.status(400).json({
|
|
success: false,
|
|
error: 'projectPath and featureId are required',
|
|
});
|
|
return;
|
|
}
|
|
|
|
const passes = await autoModeService.verifyFeature(projectPath, featureId);
|
|
res.json({ success: true, passes });
|
|
} catch (error) {
|
|
logError(error, 'Verify feature failed');
|
|
res.status(500).json({ success: false, error: getErrorMessage(error) });
|
|
}
|
|
};
|
|
}
|