djangoldp-notification/djangoldp_notification/urls.py

10 lines
239 B
Python
Raw Normal View History

2019-01-09 09:27:54 +00:00
"""djangoldp_notifications URL Configuration"""
from django.conf.urls import url
from .models import Notification
from djangoldp.views import LDPViewSet
urlpatterns = [
url(r'^notifications/', LDPViewSet.urls(model=Notification)),
]