Currently, when users verify themselves, their account properties are not being appropriately updated in our system. To ensure accurate user management, we need to implement changes that set the "archived" property to false and the "in_discord" property to true for users upon successful verification.
Problem
The current verification process does not update user properties, leading to incorrect information in our user database. This can result in challenges when managing user accounts and interactions.
Proposed Solution
Upon successful verification, we need to:
Set the "archived" property to false for users, indicating that their account is active.
Set the "in_discord" property to true, indicating that the user is verified and present in our Discord community.
Benefits
Accurate User Management: Updating user properties post-verification ensures that our database contains up-to-date and accurate user information.
Enhanced Engagement: Identifying users as "in_discord" allows us to tailor engagement and interactions based on their verified status.
Reduced Confusion: Setting "archived" to false clarifies the user's account status and avoids confusion in account management.
Implementation Steps
Modify the verification process to include property updates upon successful verification.
Update the user's "archived" and "in_discord" properties in the backend system.
Related Components
User verification process
User database management
Acceptance Criteria
Upon user verification:
The user's "archived" property is set to false.
The user's "in_discord" property is set to true.
The changes are accurately reflected in the backend user database.
Issue: Update User Properties on Verification
Description
Currently, when users verify themselves, their account properties are not being appropriately updated in our system. To ensure accurate user management, we need to implement changes that set the "archived" property to false and the "in_discord" property to true for users upon successful verification.
Problem
The current verification process does not update user properties, leading to incorrect information in our user database. This can result in challenges when managing user accounts and interactions.
Proposed Solution
Upon successful verification, we need to:
Benefits
Implementation Steps
Related Components
Acceptance Criteria
Upon user verification: