mirror of
https://github.com/haiwen/seahub.git
synced 2025-06-30 00:42:53 +00:00
* Email unregistered user when sharing repo. * Add email to contacts when share repo/file and add group user. * Remove org repo share link.
10 lines
319 B
Python
10 lines
319 B
Python
from django.conf.urls.defaults import *
|
|
|
|
from views import *
|
|
|
|
urlpatterns = patterns('',
|
|
url(r'^add/$', share_repo, name='share_repo'),
|
|
url('^remove/(?P<token>.+)/$', remove_anonymous_share, name='remove_anonymous_share'),
|
|
url('^(?P<token>.+)/$', anonymous_share_confirm, name='anonymous_share_confirm'),
|
|
)
|