Browse Source

Add route

prieto 8 years ago
parent
commit
65ff703312
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      plugins/webui/interface/urls.py

+ 2
- 2
plugins/webui/interface/urls.py View File

@@ -11,7 +11,7 @@ urls = (
11 11
     #(r'/show/(?P<id>.*)$', show_document),
12 12
     (r'^/list_classes', list_classes),
13 13
     #(r'^/show_object/(.+)$', show_object),
14
-    (r'^/show_object/?$', show_object),
14
+    (r'^/show_object?$', show_object),
15 15
     #(r'^/show_class/(.+)$', show_class),
16
-    (r'^/show_class/?$', show_class)
16
+    (r'^/show_class?$', show_class)
17 17
 )

Loading…
Cancel
Save