fix(app): harden account and workflow state

This commit is contained in:
cesnimda
2026-08-24 20:21:09 +02:00
parent e7cacad7d6
commit dca5daa1a2
32 changed files with 811 additions and 86 deletions
+1
View File
@@ -32,6 +32,7 @@ public sealed class ApplicationUser : IdentityUser
public DateTime? StripeLastEventCreatedUtc { get; set; }
public bool AiEnabled { get; set; } = true;
public bool ExternalAiProcessingAllowed { get; set; }
public bool EmailFollowUpRemindersEnabled { get; set; } = true;
public string DeletionStatus { get; set; } = AccountDeletionStatuses.Active;
public DateTimeOffset? DeletionRequestedAtUtc { get; set; }
}