Skip to content

Commit

Permalink
include l1 questions in poam
Browse files Browse the repository at this point in the history
  • Loading branch information
itsmostafa committed Mar 4, 2025
1 parent e57790d commit 5063cad
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ public static void GenerateSpreadSheet(MemoryStream memoryStream, MaturityRespon
{
foreach (var question in subgrouping.Questions)
{
// Skip maturity level 1 questions and questions that have been met.
if (question.Answer == "Y" || question.MaturityLevel == 1 || isUnpardonable(question.DisplayNumber))
// Skip questions that have been met.
if (question.Answer == "Y" || isUnpardonable(question.DisplayNumber))
{
continue;
}
Expand Down

0 comments on commit 5063cad

Please sign in to comment.