feat: add notification field for vault letters and helper tasks

This commit is contained in:
ramvignesh-b
2026-04-17 21:54:56 +05:30
parent f124efd8c1
commit 3d764703dd
4 changed files with 128 additions and 1 deletions
+1
View File
@@ -28,6 +28,7 @@ class Letter(models.Model):
sealed_at = models.DateTimeField(null=True, blank=True)
opened_at = models.DateTimeField(null=True, blank=True)
burned_at = models.DateTimeField(null=True, blank=True)
notified_at = models.DateTimeField(null=True, blank=True)
encrypted_dek = models.TextField(null=True, blank=True)
def clean(self):