better backup reports

This commit is contained in:
Matt Hill
2021-10-22 10:00:51 -06:00
committed by Aiden McClelland
parent 502fdeea78
commit 54a65e465a
18 changed files with 125 additions and 130 deletions

View File

@@ -740,12 +740,12 @@ export module Mock {
message: 'Embassy and services have been successfully backed up.',
data: {
server: {
attempted: true,
attempted: false,
error: null,
},
packages: {
'bitcoind': {
error: null,
error: 'An error ocurred while backing up',
},
},
},

View File

@@ -27,8 +27,6 @@ export class PatchDbService {
private patchSub: Subscription
data: DataModel
getData () { return this.patchDb.store.cache.data }
constructor (
@Inject(PATCH_SOURCE) private readonly source: Source<DataModel>,
@Inject(PATCH_HTTP) private readonly http: ApiService,