You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using uid as the document ID for applications limits each user to a single application. Consider generating unique application IDs and retaining userId for association.
Prevent clients from injecting or overriding the userId by removing it from dataToSave before merging, then explicitly assign the authenticated uid. This guarantees the stored user reference is always correct.
Why: This change prevents clients from injecting or overriding the userId by removing it from dataToSave and then explicitly assigning the authenticated uid, improving security.
Medium
General
Use consistent uid field
Rename the userId property to uid to match the function parameter and ensure consistency with the PR title and any queries expecting a uid field. You can leverage ES6 shorthand to keep the syntax concise.
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
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.
User description
userIdPR Type
Bug fix
Description
Include
userIdin profile save operationsInclude
userIdin application save operationsChanges walkthrough 📝
application_controller.ts
Add userId to saved data objectsfunctions/src/controllers/application_controller.ts
userIdto data payload