[PM-28045] - Validate Organization Key Population#19954
Open
jrmccannon wants to merge 6 commits intomainfrom
Open
[PM-28045] - Validate Organization Key Population#19954jrmccannon wants to merge 6 commits intomainfrom
jrmccannon wants to merge 6 commits intomainfrom
Conversation
…ut keys unintentionally
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #19954 +/- ##
==========================================
+ Coverage 46.56% 46.59% +0.03%
==========================================
Files 3878 3879 +1
Lines 115976 116075 +99
Branches 17625 17660 +35
==========================================
+ Hits 54006 54088 +82
- Misses 59519 59531 +12
- Partials 2451 2456 +5 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Contributor
|
New Issues (31)Checkmarx found the following issues in this Pull Request
|
JimmyVo16
reviewed
Apr 7, 2026
...onsole/src/common/organization-user/models/requests/organization-user-accept-init.request.ts
Show resolved
Hide resolved
JimmyVo16
requested changes
Apr 7, 2026
Contributor
JimmyVo16
left a comment
There was a problem hiding this comment.
Just one minor change, but overall approved.
amorask-bitwarden
previously approved these changes
Apr 7, 2026
Contributor
amorask-bitwarden
left a comment
There was a problem hiding this comment.
Billing changes look good.
|
JimmyVo16
approved these changes
Apr 7, 2026
amorask-bitwarden
approved these changes
Apr 7, 2026
ike-kottlowski
approved these changes
Apr 8, 2026
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 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.







🎟️ Tracking
PM-28045
📔 Objective
Organizations have been found in production without public/private keypairs. This PR addresses the client side by making it structurally impossible to send an org creation request without keys. Previously, the request models were plain DTOs where keys were set via property assignment after construction, so nothing stopped a caller from skipping them. Now all four creation request models require keys in their constructors and validate them at runtime.
Related PR
Server