1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-02 07:27:04 +00:00
Files
seahub/profile/urls.py

10 lines
366 B
Python
Raw Normal View History

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