added backup apis and tests

This commit is contained in:
Gani Georgiev
2023-05-13 22:10:14 +03:00
parent 3b0f60fe15
commit e8b4a7eb26
104 changed files with 3192 additions and 1017 deletions

View File

@@ -29,7 +29,7 @@
const settings = (await ApiClient.settings.getAll()) || {};
init(settings);
} catch (err) {
ApiClient.errorResponseHandler(err);
ApiClient.error(err);
}
isLoading = false;
@@ -47,7 +47,7 @@
init(settings);
addSuccessToast("Successfully saved application settings.");
} catch (err) {
ApiClient.errorResponseHandler(err);
ApiClient.error(err);
}
isSaving = false;