mirror of
https://github.com/haiwen/seahub.git
synced 2025-08-24 09:41:04 +00:00
9 lines
328 B
Python
9 lines
328 B
Python
from django.conf.urls.defaults import *
|
|
|
|
urlpatterns = patterns('profile.views',
|
|
url(r'^list_user/$', 'list_userids', name="list_userids"),
|
|
url(r'^$', 'edit_profile', name="edit_profile"),
|
|
url(r'^(?P<user>[^/]+)/$', 'user_profile', name="user_profile"),
|
|
url(r'^logout/$', 'logout_relay', name="logout_relay"),
|
|
)
|