We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 10c0de9 + 6d94da1 commit ccfd7f5Copy full SHA for ccfd7f5
1 file changed
apps/dokploy/server/api/routers/backup.ts
@@ -285,6 +285,7 @@ export const backupRouter = createTRPCRouter({
285
.mutation(async ({ input }) => {
286
const backup = await findBackupById(input.backupId);
287
await runWebServerBackup(backup);
288
+ await keepLatestNBackups(backup);
289
return true;
290
}),
291
listBackupFiles: protectedProcedure
0 commit comments