-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3750 from GSA-TTS/main
- Loading branch information
Showing
20 changed files
with
1,116 additions
and
662 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ jobs: | |
uses: zaproxy/[email protected] | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
docker_name: 'owasp/zap2docker-stable' | ||
docker_name: 'ghcr.io/zaproxy/zaproxy:stable' | ||
target: '${{ env.url }}' | ||
rules_file_name: 'zap.conf' | ||
allow_issue_writing: false | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
78 changes: 78 additions & 0 deletions
78
backend/audit/migrations/0008_alter_submissionevent_event.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
# Generated by Django 5.0.2 on 2024-04-17 11:51 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("audit", "0007_alter_deletedaccess_options_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="submissionevent", | ||
name="event", | ||
field=models.CharField( | ||
choices=[ | ||
("access-granted", "Access granted"), | ||
("additional-eins-updated", "Additional EINs updated"), | ||
("additional-eins-deleted", "Additional EINs deleted"), | ||
("additional-ueis-updated", "Additional UEIs updated"), | ||
("additional-ueis-deleted", "Additional UEIs deleted"), | ||
("audit-information-updated", "Audit information updated"), | ||
("audit-report-pdf-updated", "Audit report PDF updated"), | ||
( | ||
"auditee-certification-completed", | ||
"Auditee certification completed", | ||
), | ||
( | ||
"auditor-certification-completed", | ||
"Auditor certification completed", | ||
), | ||
( | ||
"corrective-action-plan-updated", | ||
"Corrective action plan updated", | ||
), | ||
( | ||
"corrective-action-plan-deleted", | ||
"Corrective action plan deleted", | ||
), | ||
("created", "Created"), | ||
("federal-awards-updated", "Federal awards updated"), | ||
( | ||
"federal-awards-audit-findings-updated", | ||
"Federal awards audit findings updated", | ||
), | ||
( | ||
"federal-awards-audit-findings-deleted", | ||
"Federal awards audit findings deleted", | ||
), | ||
( | ||
"federal-awards-audit-findings-text-updated", | ||
"Federal awards audit findings text updated", | ||
), | ||
( | ||
"federal-awards-audit-findings-text-deleted", | ||
"Federal awards audit findings text deleted", | ||
), | ||
( | ||
"findings-uniform-guidance-updated", | ||
"Findings uniform guidance updated", | ||
), | ||
( | ||
"findings-uniform-guidance-deleted", | ||
"Findings uniform guidance deleted", | ||
), | ||
("general-information-updated", "General information updated"), | ||
("locked-for-certification", "Locked for certification"), | ||
("unlocked-after-certification", "Unlocked after certification"), | ||
("notes-to-sefa-updated", "Notes to SEFA updated"), | ||
("secondary-auditors-updated", "Secondary auditors updated"), | ||
("secondary-auditors-deleted", "Secondary auditors deleted"), | ||
("submitted", "Submitted to the FAC for processing"), | ||
("disseminated", "Copied to dissemination tables"), | ||
("tribal-consent-updated", "Tribal audit consent updated"), | ||
] | ||
), | ||
), | ||
] |
Oops, something went wrong.