Use checksum more broadly, not specifically SHA256

This commit is contained in:
Dane Everitt
2020-08-23 18:06:47 -07:00
parent 4cd44d2025
commit 034a310702
8 changed files with 50 additions and 9 deletions

View File

@@ -3,7 +3,7 @@ export interface ServerBackup {
isSuccessful: boolean;
name: string;
ignoredFiles: string;
sha256Hash: string;
checksum: string;
bytes: number;
createdAt: Date;
completedAt: Date | null;