Co-Authored-By: Jean-Michel Claus <jmc@edx.org> Co-Authored-By: Brian Talbot <btalbot@edx.org> Co-Authored-By: Tim Babych <tim@edx.org> Co-Authored-By: Oleg Marshev <oleg@edx.org> Co-Authored-By: Chris Rodriguez <crodriguez@edx.org>
14 lines
421 B
Python
14 lines
421 B
Python
"""
|
|
URLs for EdxNotes.
|
|
"""
|
|
from django.conf.urls import patterns, url
|
|
|
|
# Additionally, we include login URLs for the browseable API.
|
|
urlpatterns = patterns(
|
|
"edxnotes.views",
|
|
url(r"^/$", "edxnotes", name="edxnotes"),
|
|
url(r"^/search/$", "search_notes", name="search_notes"),
|
|
url(r"^/token/$", "get_token", name="get_token"),
|
|
url(r"^/visibility/$", "edxnotes_visibility", name="edxnotes_visibility"),
|
|
)
|