()
| 126 | |
| 127 | // File Changes |
| 128 | export async function getFileChanges(): Promise<FileChange[]> { |
| 129 | return fetchFromApi("/api/file-changes", mockFileChanges) |
| 130 | } |
| 131 | |
| 132 | export async function getFileChangesByDevice(deviceName: string): Promise<FileChange[]> { |
| 133 | const filtered = mockFileChanges.filter((f) => f.device === deviceName) |
no test coverage detected