diff options
Diffstat (limited to 'src-py')
| -rw-r--r-- | src-py/rhizi_api.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src-py/rhizi_api.py b/src-py/rhizi_api.py index 5a1a4845..3a31ab11 100644 --- a/src-py/rhizi_api.py +++ b/src-py/rhizi_api.py @@ -52,6 +52,7 @@ def __common_resp_handle(data=None, error=None): @webapp.route("/load/node-single", methods=['POST']) def load_node_single_by_id_attr(): + # pending decision regarding support for single object operations assert False @webapp.route("/load/node-set", methods=['POST']) @@ -77,8 +78,9 @@ def __load_node_set_by_id_attr_common(id_set): return __common_resp_handle(error='unable to load node with ids: {0}'.format(id_set)) @webapp.route("/add/node-single", methods=['POST']) -def add_node(n): - pass +def add_node(): + # pending decision regarding support for single object operations + assert False @webapp.route("/add/node-set", methods=['POST']) def add_node_set(n_set): |
