13 lines
376 B
Python
13 lines
376 B
Python
"""Account app urlconf."""
|
|
from django.urls import path
|
|
|
|
from account.views import web as 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'),
|
|
# path('reset-password/', views.ResetPasswordView.as_view(), name='reset-password'),
|
|
]
|