Skip to content

Commit 05e2488

Browse files
committed
chore: add missing method in mock service
1 parent 344379e commit 05e2488

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

website/dev/mock-service.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ import {
4545
Customer,
4646
Tier,
4747
TierList,
48-
UsageStatsList
48+
UsageStatsList,
49+
LogPageableList
4950
} from "openvsx-webui";
5051

5152
const avatarUrl = 'https://upload.wikimedia.org/wikipedia/commons/9/99/Avatar_cupcake.png';
@@ -285,4 +286,7 @@ export class MockAdminService implements AdminService {
285286
updateTier(abortController: AbortController, name: string, tier: Tier): Promise<Readonly<Tier>> {
286287
throw new Error("Method not implemented.");
287288
}
289+
getLogs(abortController: AbortController, page?: number, size?: number, period?: string): Promise<Readonly<LogPageableList>> {
290+
throw new Error("Method not implemented.");
291+
}
288292
}

0 commit comments

Comments
 (0)