feat: add PUT endpoint to update letters and manage associated images

This commit is contained in:
Your Name
2026-04-12 04:08:14 +05:30
parent d6076bca16
commit 47474f8ae2
4 changed files with 64 additions and 6 deletions
+1
View File
@@ -4,4 +4,5 @@ from .views import LetterView
urlpatterns = [
path("", LetterView.as_view(), name="letter-list-create"),
path("<str:public_id>/", LetterView.as_view(), name="letter-create-retrieve-update-delete"),
]