This repository has been archived on 2021-04-21. You can view files and clone it, but cannot push or open issues or pull requests.
djangoldp-webpushnotification/djangoldp_webpushnotification/djangoldp_urls.py

10 lines
214 B
Python

from django.urls import include, path
from django.views.generic import TemplateView
from .views import send_push
urlpatterns = [
path("send_push", send_push),
path("webpush/", include("webpush.urls")),
]