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
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
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;