You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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"`)
}
The text was updated successfully, but these errors were encountered:
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:
The text was updated successfully, but these errors were encountered: