7 lines
180 B
Python
7 lines
180 B
Python
from django.urls import path
|
|
|
|
from core.apps.notifications.views import notification
|
|
|
|
urlpatterns = [
|
|
path('device/register/', notification.RegisterExpoPushToken.as_view()),
|
|
] |