chore: update .dockerignore and refactor createBackup function signature for improved readability

This commit is contained in:
Julien Froidefond
2025-12-05 08:28:36 +01:00
parent e715779de7
commit ec387d5e2b
2 changed files with 2 additions and 3 deletions

View File

@@ -15,3 +15,4 @@ README.md
.idea .idea

View File

@@ -170,9 +170,7 @@ async function calculateDataHash(): Promise<string> {
} }
export const backupService = { export const backupService = {
async createBackup( async createBackup(force: boolean = false): Promise<{
force: boolean = false,
): Promise<{
id: string; id: string;
filename: string; filename: string;
size: number; size: number;