Browse Source

added a list with the endpoints

Dimitri Korsch 3 years ago
parent
commit
3c4cb466bf
1 changed files with 41 additions and 0 deletions
  1. 41 0
      backend/endpoints_to_implement.txt

+ 41 - 0
backend/endpoints_to_implement.txt

@@ -0,0 +1,41 @@
+'/folder',
+'/jobs',
+'/jobs/<job_id>/remove',
+'/models',
+'/projects/<int:project_id>/model',
+'/label_providers',
+'/projects/<int:project_id>/labels',
+'/projects/<int:project_id>/labels/tree',
+'/projects/<int:project_id>/labels',
+'/projects/<int:project_id>/labels/<int:label_id>/remove',
+'/projects/<int:project_id>/labels/<int:label_id>/name',
+'/projects/<int:project_id>/labels/<int:label_id>/parent',
+'/projects/<int:project_id>/collections',
+'/projects/<int:project_id>/data/<int:collection_id>/<int:start>/<int:length>',
+'/projects/<int:project_id>/data',
+'/projects/<int:project_id>/data',
+'/projects/<int:project_id>/data/<int:start>/<int:length>',
+'/data/<int:file_id>/remove',
+'/data/<int:file_id>',
+'/data/<int:file_id>/<resolution>',
+'/data/<int:file_id>/<resolution>/<crop_box>',
+'/data/<int:file_id>/previous_next',
+'/projects/<int:project_id>/results',
+'/data/<int:file_id>/results',
+'/data/<int:file_id>/results',
+'/data/<int:file_id>/reset',
+'/results/<int:result_id>/remove',
+'/results/<int:result_id>/confirm',
+'/results/<int:result_id>/label',
+'/results/<int:result_id>/data',
+'/projects',
+'/projects',
+'/projects/<int:project_id>/label_provider',
+'/projects/<int:project_id>/external_storage',
+'/projects/<int:project_id>/remove',
+'/projects/<int:project_id>/name',
+'/projects/<int:project_id>/description',
+'/projects/<int:project_id>/pipelines/fit',
+'/projects/<int:project_id>/pipelines/predict',
+'/data/<int:file_id>/predict',
+'/data/<int:file_id>/<int:bbox_id>/predict_bounding_box',