mirror of
https://github.com/haiwen/seahub.git
synced 2025-08-28 11:41:18 +00:00
11 lines
426 B
Python
11 lines
426 B
Python
from django.conf.urls.defaults import *
|
|
|
|
urlpatterns = patterns('profile.views',
|
|
url(r'^$', 'show_profile'),
|
|
url(r'^ccnet/$', 'get_ccnet_profile'),
|
|
# url(r'^edit/$', 'set_profile', name="profile_setting"),
|
|
url(r'^edit/ccnet/$', 'set_ccnet_profile', name="ccnet_profile_setting"),
|
|
url(r'^download/$', 'download_profile', name="profile_download"),
|
|
url(r'userids/$', 'list_userids', name="list_userids")
|
|
)
|