mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-14 18:23:27 +00:00
12 lines
220 B
Python
12 lines
220 B
Python
from django.conf.urls import url, include
|
|
|
|
from subscription.views import *
|
|
|
|
urlpatterns = [
|
|
# Subscription views
|
|
url(r'^subscription/(?P<user_id>[0-9]+)/$', NewSubscription.as_view(), name='subscription'),
|
|
]
|
|
|
|
|
|
|