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.
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