mirror of
https://github.com/fergalmoran/dss.api.git
synced 2025-12-22 09:18:13 +00:00
7 lines
255 B
Python
7 lines
255 B
Python
from django.conf.urls import patterns, url
|
|
|
|
urlpatterns = patterns(
|
|
'',
|
|
url(r'^mix/(?P<mix_id>\d+)/$', 'spa.embedding.views.mix', name='embed_mix'),
|
|
url(r'^mix/(?P<slug>[\w\d_.-]+)/$', 'spa.embedding.views.mix', name='embed_mix_slug'),
|
|
) |