Files
2026-06-15 18:49:26 +03:00

31 lines
857 B
TypeScript

import { http, HttpResponse } from 'msw';
import { SourcesSourceDetail } from '@api/types.gen';
export const gitopsHandlers = [
http.post('/api/gitops/repo/refs', () =>
HttpResponse.json(['refs/heads/main', 'refs/heads/develop'])
),
http.post('/api/gitops/repo/files/search', () =>
HttpResponse.json(['docker-compose.yml'])
),
http.get('/api/gitops/sources', () => {
return HttpResponse.json([], {
headers: {
'x-total-count': '0',
'x-total-available': '0',
},
});
}),
http.get('/api/gitops/sources/:id', ({ params: { id } }) => {
return HttpResponse.json<SourcesSourceDetail>({
id: typeof id === 'string' ? parseInt(id, 10) : 0,
name: 'source',
status: 'healthy',
type: 'git',
url: 'https://github.com/portainer/portainer',
connection: {},
});
}),
];