1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-08-31 14:42:10 +00:00

Enable register user on seahub

This commit is contained in:
plt
2011-05-08 15:19:58 +08:00
parent c43bc4944a
commit 207be6c5bb
11 changed files with 105 additions and 40 deletions

View File

@@ -1,6 +1,6 @@
from django.conf.urls.defaults import *
from django.conf import settings
from seahub.views import root, home, peers, groups, myhome
from seahub.views import root, home, peers, groups, myhome, myfiles
# Uncomment the next two lines to enable the admin:
from django.contrib import admin
@@ -24,6 +24,7 @@ urlpatterns = patterns('',
(r'^home/my/$', myhome),
(r'^peers/$', peers),
(r'^groups/$', groups),
(r'^files/my/$', myfiles),
(r'^avatar/', include('avatar.urls')),
(r'^profile/', include('seahub.profile.urls')),