Files
edx-platform/lms/djangoapps/edxnotes/api_urls.py
Troy Sankey b2f4762dc4 Add API endpoint for retiring a user from EdxNotes (edx-notes-api)
This also creates an appropriate course-agnostic location for notes
APIs, under /api/edxnotes/v1/.
2018-05-30 12:46:07 -04:00

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