These endpoints are currently for internal use only, but should be versioned nonetheless; Drupal will begin using the basket creation endpoint soon. No functionality has been changed. XCOM-494.
14 lines
313 B
Python
14 lines
313 B
Python
"""
|
|
Defines the URL routes for this app.
|
|
"""
|
|
from django.conf.urls import patterns, url
|
|
|
|
from commerce import views
|
|
|
|
|
|
urlpatterns = patterns(
|
|
'',
|
|
url(r'^checkout/cancel/$', views.checkout_cancel, name='checkout_cancel'),
|
|
url(r'^checkout/receipt/$', views.checkout_receipt, name='checkout_receipt'),
|
|
)
|