generated from hmcts/spring-boot-template
-
Notifications
You must be signed in to change notification settings - Fork 2
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
DMP-4663: Add audit_user to revInfo table for Envers auditing #2496
Merged
Conversation
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
Ben-Edwards-cgi
requested review from
davet1985,
jackmaloney,
cakeben,
louisehuyton,
bancey and
varun-vijayagopal
and removed request for
a team
January 28, 2025 14:28
jackmaloney
approved these changes
Jan 29, 2025
chrisbellingham-hmcts
approved these changes
Jan 31, 2025
src/integrationTest/java/uk/gov/hmcts/darts/audit/service/AuditorRevisionListenerITest.java
Outdated
Show resolved
Hide resolved
src/integrationTest/java/uk/gov/hmcts/darts/audit/service/AuditorRevisionListenerITest.java
Outdated
Show resolved
Hide resolved
Ben-Edwards-cgi
force-pushed
the
DMP-4663
branch
from
February 3, 2025 10:24
8968231
to
aae15ee
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Links
Change description
Summary of Git Diff
This Git Diff introduces a new auditing feature to track user actions by adding an
audit_user
field to theRevisionInfo
entity and implementing anAuditorRevisionListener
. It includes tests for the listener functionality and updates the database schema to support the new field.Highlights
New Files Added:
AuditorRevisionListenerITest.java
: Integration test for auditing functionality.RevisionInfo.java
: Model class for storing revision details in the database.AuditorRevisionListener.java
: Listener class for handling new revisions and setting the audit user.V1_434__addedAuditUserToRevInfo.sql
: SQL migration script to add theaudit_user
column to therevinfo
table.AuditorRevisionListenerTest.java
: Unit tests for theAuditorRevisionListener
class.Key Changes:
RevisionInfo
class now includes anauditUser
field to store the ID of the user making changes.AuditorRevisionListener
captures the user information from the JWT token when a new revision is created.revinfo
table and include the newaudit_user
column.auditUser
field during revisions.Does this PR introduce a breaking change? (check one with "x")