feat: implement letter encryption fields, lifecycle timestamps, and API endpoints with validation

This commit is contained in:
Your Name
2026-04-10 21:51:53 +05:30
parent 3e02286f6b
commit c6f1e3e2a2
10 changed files with 166 additions and 3 deletions
+7
View File
@@ -0,0 +1,7 @@
from django.urls import path
from .views import LetterView
urlpatterns = [
path("", LetterView.as_view(), name="letter-list-create"),
]