Update Member: Remove email change support - #99
Merged
Merged
Conversation
Member
Author
This stack of pull requests is managed by Graphite. Learn more about stacking. |
Allimonae
marked this pull request as ready for review
August 26, 2026 23:50
Allimonae
force-pushed
the
disable-email
branch
from
August 26, 2026 23:51
4ea8437 to
f146634
Compare
Allimonae
force-pushed
the
graphite-base/99
branch
from
August 26, 2026 23:51
1421ff6 to
3d7816e
Compare
Allimonae
force-pushed
the
disable-email
branch
from
August 26, 2026 23:52
f146634 to
0bcc642
Compare
Graphite Automations"Request reviewers once CI passes" took an action on this PR • (08/26/26)2 reviewers were added to this PR based on Henry Chen's automation. |
Allimonae
force-pushed
the
disable-email
branch
from
August 27, 2026 00:15
0bcc642 to
118a34f
Compare
spiffyy99
reviewed
Aug 27, 2026
spiffyy99
reviewed
Aug 27, 2026
spiffyy99
reviewed
Aug 27, 2026
|
also add a test in for the validation exception being thrown |
arklian
reviewed
Aug 28, 2026
Allimonae
force-pushed
the
disable-email
branch
3 times, most recently
from
August 28, 2026 18:50
57ce67c to
512ed6f
Compare
Allimonae
commented
Aug 28, 2026
Allimonae
commented
Aug 28, 2026
spiffyy99
approved these changes
Aug 28, 2026
Allimonae
force-pushed
the
disable-email
branch
from
September 4, 2026 16:35
512ed6f to
d172298
Compare
Member
Author
Merge activity
|
Allimonae
force-pushed
the
disable-email
branch
from
September 4, 2026 16:39
d172298 to
1686025
Compare
|
spiffyy99
self-requested a review
September 4, 2026 16:47
spiffyy99
approved these changes
Sep 4, 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.




Disables email changes in member profile updates until email change verification is implemented. Removed and updated some tests.
What changed?
The email field in the member profile form is now always disabled, with an updated description informing users that email changes are not currently supported. On the backend,
updateMembernow throws aValidationExceptionif an email change is attempted. The previously existing duplicate email handling logic (including theDuplicateKeyExceptioncatch block andMemberDuplicateException) has been removed from the update flow since it is no longer reachable.Why make this change?
Email changes require a verification flow (e.g., confirming ownership of the new address) that has not yet been implemented. Disabling this functionality prevents unverified email changes until proper verification support is in place.