9 lines
256 B
TypeScript
9 lines
256 B
TypeScript
import { http, HttpResponse } from 'msw';
|
|
|
|
export const templatesHandlers = [
|
|
http.put('/api/custom_templates/:id/git_fetch', () =>
|
|
HttpResponse.json({ FileContent: '' })
|
|
),
|
|
http.get('/api/templates/helm/values', () => HttpResponse.json({})),
|
|
];
|