mirror of
https://github.com/haiwen/seahub.git
synced 2025-08-17 22:47:59 +00:00
25 lines
765 B
Python
25 lines
765 B
Python
|
"""URLs module"""
|
||
|
from django.conf import settings
|
||
|
from django.conf.urls import url
|
||
|
|
||
|
from social_core.utils import setting_name
|
||
|
from . import views
|
||
|
|
||
|
|
||
|
extra = getattr(settings, setting_name('TRAILING_SLASH'), True) and '/' or ''
|
||
|
|
||
|
app_name = 'social'
|
||
|
|
||
|
urlpatterns = [
|
||
|
# authentication / association
|
||
|
url(r'^login/(?P<backend>[^/]+){0}$'.format(extra), views.auth,
|
||
|
name='begin'),
|
||
|
url(r'^complete/(?P<backend>[^/]+){0}$'.format(extra), views.complete,
|
||
|
name='complete'),
|
||
|
# disconnection
|
||
|
url(r'^disconnect/(?P<backend>[^/]+){0}$'.format(extra), views.disconnect,
|
||
|
name='disconnect'),
|
||
|
url(r'^disconnect/(?P<backend>[^/]+)/(?P<association_id>\d+){0}$'
|
||
|
.format(extra), views.disconnect, name='disconnect_individual'),
|
||
|
]
|