This repository was archived by the owner on Jun 19, 2026. It is now read-only.
feat: GDPR-compliant PII Export and Delete Workflow#1121
Open
fennhelloworld wants to merge 1 commit into
Open
Conversation
Author
|
Hi @rohitdash08 👋, just checking in on this PR. It's been about 13 days since submission with no review feedback yet. The GDPR PII Export and Delete workflow is fully implemented with 12 comprehensive tests. Is there anything I can do to help move this forward? Happy to make any adjustments if needed. Thanks! |
This file contains hidden or 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
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #76.
Summary
Implements GDPR-compliant PII export and delete workflow for FinMind backend.
Changes
New files:
packages/backend/app/routes/gdpr.py— GDPR endpoints (GET export, DELETE user)packages/backend/app/services/gdpr.py— Service layer for data collection and deletionpackages/backend/tests/test_gdpr.py— 12 comprehensive testsModified files:
packages/backend/app/__init__.py— Schema compatibility patch for audit_logs.ip_addresspackages/backend/app/db/schema.sql— Added ip_address column to audit_logspackages/backend/app/models.py— Added ip_address field to AuditLog modelpackages/backend/app/routes/__init__.py— Registered GDPR blueprint at /gdprpackages/backend/tests/conftest.py— Added autouse Redis mock fixtureFeatures