[ ] I am NOT using the latest Release. I am aware that the first thing I will be asked to do is update the application so that I have the latest bugfixes.
Where are you experiencing the issue?
[X] API
[ ] UI or other client
[ ] Deployment
[ ] Elsewhere
Current Behavior
Response data from requests to /collections/{collectionId}/findings with the ccis projection does not include "control" in the ccis response.
if (inProjection.includes('ccis')) {
columns.push(`cast(concat('[',
coalesce(
group_concat(distinct
case when cci.cci is not null
then json_object(
'cci', cci.cci,
'definition', cci.definition,
'apAcronym', cci.apAcronym)
else null end order by cci.cci),
''),
']') as json) as "ccis"`)
}
Is there an existing issue for this?
Are you using the latest version of STIG Manager?
Where are you experiencing the issue?
Current Behavior
Response data from requests to /collections/{collectionId}/findings with the ccis projection does not include "control" in the ccis response.
CCI specification schema:
Response schema:
Issue arises from CollectionService.js L324-336: