1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-08-16 06:03:35 +00:00
seahub/profile/urls.py

9 lines
296 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"),
)