ngageoint / scale

Processing framework for containerized algorithms
http://ngageoint.github.io/scale/
Apache License 2.0
105 stars 45 forks source link

Ingest API Filename Filtering #1811

Closed emimaesmith closed 5 years ago

emimaesmith commented 5 years ago

Pain Point? Please describe. The /ingest/?filename=xxxx allows for returning the ingests matching specific filenames. However, these filenames have to exactly match the filename or nothing will be returned.

Desired Solution We currently do a .filter(file_name=file_name) when matching records with a specific filename. Propose we change this to .filter(file_name__in=file_name) to allow for capture of like names.

Alternative / Workaround Needed to complete https://github.com/ngageoint/scale-ui/issues/355