1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-08-14 05:05:58 +00:00
seahub/profile/urls.py

11 lines
426 B
Python
Raw Normal View History

from django.conf.urls.defaults import *
urlpatterns = patterns('profile.views',
url(r'^$', 'show_profile'),
2011-10-18 07:41:48 +00:00
url(r'^ccnet/$', 'get_ccnet_profile'),
# url(r'^edit/$', 'set_profile', name="profile_setting"),
2011-10-18 07:41:48 +00:00
url(r'^edit/ccnet/$', 'set_ccnet_profile', name="ccnet_profile_setting"),
2012-03-14 13:13:02 +00:00
url(r'^download/$', 'download_profile', name="profile_download"),
url(r'userids/$', 'list_userids', name="list_userids")
)