mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
add a getSnapshotProgress implementation to DocStorageManager
This commit is contained in:
parent
4815a007ed
commit
95b8134614
@ -258,7 +258,14 @@ export class DocStorageManager implements IDocStorageManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public getSnapshotProgress(): SnapshotProgress {
|
public getSnapshotProgress(): SnapshotProgress {
|
||||||
throw new Error('getSnapshotProgress not implemented');
|
return {
|
||||||
|
pushes: 0,
|
||||||
|
skippedPushes: 0,
|
||||||
|
errors: 0,
|
||||||
|
changes: 0,
|
||||||
|
windowsStarted: 0,
|
||||||
|
windowsDone: 0,
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
public async replace(docName: string, options: any): Promise<void> {
|
public async replace(docName: string, options: any): Promise<void> {
|
||||||
|
Loading…
Reference in New Issue
Block a user