mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-14 10:13:21 +00:00
11 lines
156 B
Python
11 lines
156 B
Python
|
from django.conf.urls import url, include
|
||
|
|
||
|
from rootplace.views import *
|
||
|
|
||
|
urlpatterns = [
|
||
|
url(r'^merge$', MergeUsersView.as_view(), name='merge'),
|
||
|
]
|
||
|
|
||
|
|
||
|
|