This is because we already require trailing slashes on most of the rest of the retirement endpoints, which are called via slumber which appends the trailing slash by default.
11 lines
199 B
Python
11 lines
199 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"),
|
|
]
|