diff options
Diffstat (limited to 'archaeological_files/urls.py')
| -rw-r--r-- | archaeological_files/urls.py | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/archaeological_files/urls.py b/archaeological_files/urls.py index c6b932fec..914872a1f 100644 --- a/archaeological_files/urls.py +++ b/archaeological_files/urls.py @@ -75,6 +75,12 @@ urlpatterns += patterns(          name='get-file'),      url(r'get-file-full/(?P<type>.+)?$', 'get_file',          name='get-file-full', kwargs={'full': True}), +    url(r'get-file-shortcut/own/(?P<type>.+)?$', +        'get_file', name='get-own-file-shortcut', +        kwargs={'full': 'shortcut', 'force_own': True}), +    url(r'get-file-shortcut/(?P<type>.+)?$', +        'get_file', name='get-file-shortcut', +        kwargs={'full': 'shortcut'}),      url(r'get-administrativeactfile/(?P<type>.+)?$',          'get_administrativeactfile', name='get-administrativeactfile'),      url(r'show-file(?:/(?P<pk>.+))?/(?P<type>.+)?$', 'show_file', | 
