-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
INE-951 | Delete Applicant (Scramble PII) #701
base: main
Are you sure you want to change the base?
Conversation
…numbers from a cryptographically secure source Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
…numbers from a cryptographically secure source Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
Quality Gate passedIssues Measures |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
One comment, otherwise this looks good.
}) | ||
@UseInterceptors(ClassSerializerInterceptor) | ||
@Delete('/:id') | ||
@AllowAccess(Access.APPLICANT_WRITE) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should restrict this to Admins.
Added new columns to the
ien_applicants
table:deleted_by_id
(UUID, nullable)deleted_date
(timestamp, nullable)backup
(JSONB, nullable, default: null)Implemented data deletion in the backend, including functionality to scramble personally identifiable information (PII).
Introduced a deletion date and corresponding button to the frontend interface.
Added
subscribers
to prevent ATS update the scramble info if applicant was deletedScreenshots
Before Deletion
Deleting
After Deletion