MCPcopy Create free account
hub / github.com/AutoForgeAI/autoforge / deleteFeature

Function deleteFeature

ui/src/lib/api.ts:150–154  ·  view source on GitHub ↗
(projectName: string, featureId: number)

Source from the content-addressed store, hash-verified

148}
149
150export async function deleteFeature(projectName: string, featureId: number): Promise<void> {
151 await fetchJSON(`/projects/${encodeURIComponent(projectName)}/features/${featureId}`, {
152 method: 'DELETE',
153 })
154}
155
156export async function skipFeature(projectName: string, featureId: number): Promise<void> {
157 await fetchJSON(`/projects/${encodeURIComponent(projectName)}/features/${featureId}/skip`, {

Callers

nothing calls this directly

Calls 1

fetchJSONFunction · 0.85

Tested by

no test coverage detected