feat(account): add deletion lifecycle
CI and Deploy / test (pull_request) Successful in 5m18s
CI and Deploy / deploy (pull_request) Has been skipped

This commit is contained in:
cesnimda
2026-08-15 19:03:54 +02:00
parent 1ec9dd037e
commit 842e793f69
28 changed files with 4418 additions and 129 deletions
@@ -199,7 +199,8 @@ public sealed class AccountDataExportTests
.Options;
var db = new JobTrackerContext(options, currentUser.Object);
db.Database.EnsureCreated();
return (db, paths, new AccountDataExportService(db, paths, new AttachmentStorage(paths), TimeProvider.System));
var inventory = new AccountOwnedFileInventory(db, paths, new AttachmentStorage(paths));
return (db, paths, new AccountDataExportService(db, paths, inventory, TimeProvider.System));
}
private static string ReadText(ZipArchiveEntry entry)