Skip to content

Commit

Permalink
Correct bearer findings.
Browse files Browse the repository at this point in the history
  • Loading branch information
TreyE committed May 3, 2024
1 parent 7789bcf commit ca8e542
Show file tree
Hide file tree
Showing 4 changed files with 51 additions and 5 deletions.
44 changes: 44 additions & 0 deletions bearer.ignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"23e96adf081d329a3dd7f3faabc07023_0": {
"author": "Trey Evans",
"comment": "Standard error logging in Angular application initialization.",
"false_positive": true,
"ignored_at": "2024-05-03T15:15:58Z"
},
"3924831ff8accd3aaf427dd7bbccb33e_0": {
"author": "Trey Evans",
"comment": "Standard error logging in Angular application initialization.",
"false_positive": true,
"ignored_at": "2024-05-03T15:17:34Z"
},
"92126b47ead8cdd638a3f63e2faec731_0": {
"author": "Trey Evans",
"comment": "Error logging performed during loading of JSON file - does not expose any data or state.",
"false_positive": true,
"ignored_at": "2024-05-03T15:40:53Z"
},
"9d71d4a22087ff47afba812f0d365136_0": {
"author": "Trey Evans",
"comment": "Standard error logging in Angular application initialization.",
"false_positive": true,
"ignored_at": "2024-05-03T15:16:49Z"
},
"b162fab0a5f46f6fee32183030fc341f_0": {
"author": "Trey Evans",
"comment": "Timer logout debug message - exposes nothing.",
"false_positive": true,
"ignored_at": "2024-05-03T15:56:01Z"
},
"b162fab0a5f46f6fee32183030fc341f_1": {
"author": "Trey Evans",
"comment": "Timer logout debug message - exposes nothing.",
"false_positive": true,
"ignored_at": "2024-05-03T15:56:24Z"
},
"e73f21dde8c19d59e0ca34497f94c1b9_0": {
"author": "Trey Evans",
"comment": "Error logging performed during loading of JSON file - does not expose any data or state.",
"false_positive": true,
"ignored_at": "2024-05-03T15:39:34Z"
}
}
7 changes: 7 additions & 0 deletions bearer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,10 @@ scan:
skip-path:
# Used only to generate documentation - not part of the live site
- 'apps/console-api-docs/static/swagger-ui.js'
- 'build/typedoc_utils.js'
# Deployment script, changes icons and is not part of the live site.
- '.github/scripts/update-console-favicon.js'
- '.github/scripts/update-slcsp-favicon.js'
# Console logging in test suites
- 'apps/enroll-e2e/src/support/commands.ts'
- 'apps/slcsp-calculator-e2e/src/support/commands.ts'
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ export class HouseholdService {

getTransformedValue(): HouseholdFormValue {
const originalFormValue = this.householdForm.value as HouseholdFormValue;
console.log({ originalFormValue });

const [primaryMember, ...secondaryMembers] = originalFormValue.members;

Expand All @@ -104,7 +103,6 @@ export class HouseholdService {
...originalFormValue,
members: updatedMembers,
};
console.log(transformedFormValue);

return transformedFormValue;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,8 @@ export class ResultsComponent implements OnInit {
const resultsContainer = this.results.nativeElement;

if (table !== undefined) {
console.log('Generating table');
// await document.html(table);

console.log(resultsContainer);

await document.html(resultsContainer, {
callback: function (doc) {
doc.save('results.pdf');
Expand Down

0 comments on commit ca8e542

Please sign in to comment.