The Entitlement API will allow for GET, POST, DELETE(Revoke), and variations of these methods of managing and retrieving data about Learner Entitlements. [LEARNER-2661]
6 lines
132 B
Python
6 lines
132 B
Python
from django.conf.urls import include, url
|
|
|
|
urlpatterns = [
|
|
url(r'^v1/', include('entitlements.api.v1.urls', namespace='v1')),
|
|
]
|