@@ -290,7 +290,7 @@ def create_point():
290290)
291291def texture_coordinates ():
292292 utils_functions .validate_request (flask .request , texture_coordinates_json )
293- data = geode_functions .load_data_by_id (flask .request .json ["id" ])
293+ data = geode_functions .load_data (flask .request .json ["id" ])
294294 texture_coordinates = data .texture_manager ().texture_names ()
295295 return flask .make_response ({"texture_coordinates" : texture_coordinates }, 200 )
296296
@@ -308,7 +308,7 @@ def texture_coordinates():
308308)
309309def vertex_attribute_names ():
310310 utils_functions .validate_request (flask .request , vertex_attribute_names_json )
311- data = geode_functions .load_data_by_id (flask .request .json ["id" ])
311+ data = geode_functions .load_data (flask .request .json ["id" ])
312312 vertex_attribute_names = data .vertex_attribute_manager ().attribute_names ()
313313 return flask .make_response (
314314 {
@@ -331,7 +331,7 @@ def vertex_attribute_names():
331331)
332332def polygon_attribute_names ():
333333 utils_functions .validate_request (flask .request , polygon_attribute_names_json )
334- data = geode_functions .load_data_by_id (flask .request .json ["id" ])
334+ data = geode_functions .load_data (flask .request .json ["id" ])
335335 polygon_attribute_names = data .polygon_attribute_manager ().attribute_names ()
336336 return flask .make_response (
337337 {
@@ -354,7 +354,7 @@ def polygon_attribute_names():
354354)
355355def polyhedron_attribute_names ():
356356 utils_functions .validate_request (flask .request , polyhedron_attribute_names_json )
357- data = geode_functions .load_data_by_id (flask .request .json ["id" ])
357+ data = geode_functions .load_data (flask .request .json ["id" ])
358358 polyhedron_attribute_names = data .polyhedron_attribute_manager ().attribute_names ()
359359 return flask .make_response (
360360 {
0 commit comments