12 lines
274 B
Python
12 lines
274 B
Python
"""Account app urlconf."""
|
|
from django.urls import path
|
|
|
|
from account import views
|
|
|
|
app_name = 'account'
|
|
|
|
urlpatterns = [
|
|
path('user/', views.UserView.as_view(), name='user_get_update'),
|
|
path('device/', views.FCMDeviceViewSet.as_view(), name='fcm_device_create'),
|
|
]
|