feat(backend): migrate auth and notifications off email
Some checks failed
Backend CI/CD / test (push) Has been cancelled
Backend CI/CD / deploy (push) Has been cancelled

This commit is contained in:
2026-05-21 10:28:04 +03:30
parent b4903f7cb1
commit b7b21a6cc6
35 changed files with 2784 additions and 1390 deletions

View File

@@ -5,6 +5,7 @@ from apps.certificates.api.views import certificates_router
from apps.communications.api.views import communications_router
from apps.events.api.views import events_router
from apps.gallery.api.views import gallery_router
from apps.notifications.api.views import notifications_router
from apps.payments.api.views import payments_router
from apps.users.api.meta import meta_router
from apps.users.api.views import auth_router
@@ -15,9 +16,9 @@ router.add_router("auth/", auth_router, tags=["Authentication"])
router.add_router("blog/", blog_router, tags=["Blog"])
router.add_router("gallery/", gallery_router, tags=["Gallery"])
router.add_router("events/", events_router, tags=["Events"])
router.add_router("notifications/", notifications_router, tags=["Notifications"])
router.add_router("communications/", communications_router, tags=["Communications"])
router.add_router("payments/", payments_router, tags=["Payments"])
router.add_router("certificates/", certificates_router, tags=["Certificates"])
router.add_router("meta/", meta_router, tags=["Meta"])
router.add_router("", health_router, tags=["Health"])