src/notes/urls.py
author salimr <riwad.salim@yahoo.fr>
Mon, 08 Oct 2018 03:24:47 +0200
changeset 159 a4705c2b4544
parent 36 36210c4f019f
permissions -rw-r--r--
Add send note options to the editor

from django.conf.urls import url, include

from .api import urls as api_urls

urlpatterns = [
    url(r'^api/', include(api_urls, namespace='notes_api')),
]