17 lines
389 B
Python
17 lines
389 B
Python
"""
|
|
URLs for EdxNotes.
|
|
"""
|
|
|
|
|
|
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
# Additionally, we include login URLs for the browseable API.
|
|
urlpatterns = [
|
|
path('', views.edxnotes, name="edxnotes"),
|
|
path('notes/', views.notes, name="notes"),
|
|
path('token/', views.get_token, name="get_token"),
|
|
path('visibility/', views.edxnotes_visibility, name="edxnotes_visibility"),
|
|
]
|