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