djangoldp-notification/djangoldp_notifications/urls.py
Matthieu Fesselier d24b176039 First commit
2019-01-09 16:27:54 +07:00

10 lines
239 B
Python

"""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)),
]