mirror of
https://github.com/haiwen/seahub.git
synced 2025-06-27 07:28:42 +00:00
12 lines
285 B
Python
12 lines
285 B
Python
from django.conf.urls.defaults import *
|
|
|
|
from views import *
|
|
|
|
|
|
urlpatterns = patterns('',
|
|
url(r'^$', list_shared_repos),
|
|
url(r'^list/$', list_shared_repos, name='shared_repo_list'),
|
|
url(r'^add/$', share_repo),
|
|
url(r'^delete/(?P<item_id>[^/]+)/$', delete_share_item),
|
|
)
|