summaryrefslogtreecommitdiff
path: root/ishtar/furnitures/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar/furnitures/urls.py')
-rw-r--r--ishtar/furnitures/urls.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/ishtar/furnitures/urls.py b/ishtar/furnitures/urls.py
index d20ae6035..7d9a6873a 100644
--- a/ishtar/furnitures/urls.py
+++ b/ishtar/furnitures/urls.py
@@ -69,12 +69,12 @@ urlpatterns += patterns('ishtar.furnitures.views',
name='autocomplete-organization'),
url(BASE_URL + r'autocomplete-file/$', 'autocomplete_file',
name='autocomplete-file'),
- url(BASE_URL + r'json-file/$', 'json_file',
- name='json-file'),
+ url(BASE_URL + r'get-file/(?P<type>.+)?$', 'get_file',
+ name='get-file'),
url(BASE_URL + r'autocomplete-operation/$', 'autocomplete_operation',
name='autocomplete-operation'),
- url(BASE_URL + r'json-operation/$', 'json_operation',
- name='json-operation'),
+ url(BASE_URL + r'get-operation/(?P<type>.+)?$', 'get_operation',
+ name='get-operation'),
url(BASE_URL + r'update-current-item/$', 'update_current_item',
name='update-current-item'),
)