(projectName: string)
| 133 | // ============================================================================ |
| 134 | |
| 135 | export async function listFeatures(projectName: string): Promise<FeatureListResponse> { |
| 136 | return fetchJSON(`/projects/${encodeURIComponent(projectName)}/features`) |
| 137 | } |
| 138 | |
| 139 | export async function createFeature(projectName: string, feature: FeatureCreate): Promise<Feature> { |
| 140 | return fetchJSON(`/projects/${encodeURIComponent(projectName)}/features`, { |
nothing calls this directly
no test coverage detected