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