This also creates an appropriate course-agnostic location for notes APIs, under /api/edxnotes/v1/.
11 lines
198 B
Python
11 lines
198 B
Python
"""
|
|
API URLs for EdxNotes
|
|
"""
|
|
from django.conf.urls import url
|
|
|
|
from edxnotes import views
|
|
|
|
urlpatterns = [
|
|
url(r"^retire_user$", views.RetireUserView.as_view(), name="edxnotes_retire_user"),
|
|
]
|