Coverage for website/pushnotifications/urls.py: 100.00%
4 statements
« prev ^ index » next coverage.py v7.6.7, created at 2025-08-14 10:31 +0000
« prev ^ index » next coverage.py v7.6.7, created at 2025-08-14 10:31 +0000
1from django.urls import include, path
3from . import views
5app_name = "pushnotifications"
7urlpatterns = [
8 path(
9 "pushnotifications/",
10 include(
11 [
12 path("admin/send/<int:pk>/", views.admin_send, name="admin-send"),
13 ]
14 ),
15 )
16]