Skip to content
This repository has been archived by the owner on Jan 12, 2024. It is now read-only.

Commit

Permalink
fix: Updates the update sdb end point to produce audit logs with the …
Browse files Browse the repository at this point in the history
…proper slug format.
  • Loading branch information
tunderwood committed Jul 22, 2020
1 parent 0b10504 commit 2dfca76
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ public SafeDepositBoxV2 updateSafeDepositBoxV2(
String.format(
"Update details for SDB with name: '%s' and id: '%s'",
currentBox.getName(), currentBox.getId()));
auditLoggingFilterDetails.setSdbNameSlug(currentBox.getName());
auditLoggingFilterDetails.setSdbNameSlug(slugger.toSlug(currentBox.getName()));

return getSDBAndValidatePrincipalAssociationV2(id);
}
Expand Down

0 comments on commit 2dfca76

Please sign in to comment.