diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-08-16 17:52:02 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-08-16 17:52:02 +0200 |
commit | 49e0c676d0673111ed35783af6cf66803e034665 (patch) | |
tree | a920f18748bf36f42e188821ccbf752d8d00853a /ishtar_common/urls.py | |
parent | 993416780e04c8de3e59121c6503cc7786c9bea2 (diff) | |
download | Ishtar-49e0c676d0673111ed35783af6cf66803e034665.tar.bz2 Ishtar-49e0c676d0673111ed35783af6cf66803e034665.zip |
Person - Organization: add full export (refs #3039)
Diffstat (limited to 'ishtar_common/urls.py')
-rw-r--r-- | ishtar_common/urls.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ishtar_common/urls.py b/ishtar_common/urls.py index 30b5741d9..daaac77e3 100644 --- a/ishtar_common/urls.py +++ b/ishtar_common/urls.py @@ -139,6 +139,8 @@ urlpatterns += patterns( name='autocomplete-person-permissive'), url(r'get-person/(?P<type>.+)?$', 'get_person', name='get-person'), + url(r'get-person-full/(?P<type>.+)?$', 'get_person', + name='get-person-full', kwargs={'full': True}), url(r'show-person(?:/(?P<pk>.+))?/(?P<type>.+)?$', 'show_person', name='show-person'), url(r'department-by-state/(?P<state_id>.+)?$', 'department_by_state', @@ -158,6 +160,8 @@ urlpatterns += patterns( 'new_organization', name='new-organization'), url(r'get-organization/(?P<type>.+)?$', 'get_organization', name='get-organization'), + url(r'get-organization-full/(?P<type>.+)?$', 'get_organization', + name='get-organization-full', kwargs={'full': True}), url(r'show-organization(?:/(?P<pk>.+))?/(?P<type>.+)?$', 'show_organization', name='show-organization'), url(r'autocomplete-organization/([0-9_]+)?$', |