rcnn/backend/apps/users/urls.py
Marius Unsel d93412cd0d Initial commit
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-07 01:12:40 +02:00

8 lines
213 B
Python

from django.urls import path
from .views import MeView, FCMTokenView
urlpatterns = [
path("me/", MeView.as_view(), name="user-me"),
path("me/fcm-token/", FCMTokenView.as_view(), name="user-fcm-token"),
]