(project_string_id, video_file_id, label_file_id)
| 70 | methods = ['GET']) |
| 71 | @Project_permissions.user_has_project(["admin", "Editor", "Viewer", "allow_if_project_is_public"]) |
| 72 | def get_sequence_from_label(project_string_id, video_file_id, label_file_id): |
| 73 | with sessionMaker.session_scope() as session: |
| 74 | return get_sequence_from_label_shared( |
| 75 | session, video_file_id, label_file_id) |
| 76 | |
| 77 | |
| 78 | def get_sequence_from_label_shared(session, video_file_id, label_file_id): |
nothing calls this directly
no test coverage detected