Skip to content

Commit

Permalink
feat: extend hard delete retention period from 3 to 30 days in Workfl…
Browse files Browse the repository at this point in the history
…owLogService
  • Loading branch information
simlarsen committed Jan 21, 2025
1 parent 7271481 commit d44ddd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Common/Server/Services/WorkflowLogService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export class Service extends DatabaseService<Model> {
public constructor() {
super(Model);
if (IsBillingEnabled) {
this.hardDeleteItemsOlderThanInDays("createdAt", 3);
this.hardDeleteItemsOlderThanInDays("createdAt", 30);
}
}
}
Expand Down

0 comments on commit d44ddd6

Please sign in to comment.