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
Previously, we didn't have team.id in our database, so we used team.dbId to identify team records. However, dbId should be used as an internal identifier. Using team.id instead of team.dbId in user-facing values enhances security and adheres to best practices.
Now that we have team.id in our schema, let's use it! Please identify all locations where team.dbId is used in user-facing values (such as URL paths and form parameters) and replace them with team.id. Ensure to thoroughly test the changes after implementation.
Task Description
Previously, we didn't have
team.id
in our database, so we usedteam.dbId
to identify team records. However,dbId
should be used as an internal identifier. Usingteam.id
instead ofteam.dbId
in user-facing values enhances security and adheres to best practices.Now that we have
team.id
in our schema, let's use it! Please identify all locations whereteam.dbId
is used in user-facing values (such as URL paths and form parameters) and replace them withteam.id
. Ensure to thoroughly test the changes after implementation.Background
The text was updated successfully, but these errors were encountered: