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
zpchavez opened this issue
May 13, 2021
· 0 comments
Labels
blockingAutomatically assigned to indicate this issue is a blocker for another issue.bugSomething isn't workingminorSeverity: Affects minor functionality or non-critical data. It has an easy workaround.
When inviting a user, we check if the email already exists and if it does we do a reinvite. If it does not exist, we create a new user. The problem is we do the check against the email column instead of the email_lower_case column. So if we invite [email protected] and they exist in OIDC as [email protected], it will try to create a new user and then fail because the email_lower_case field will not be unique.
The text was updated successfully, but these errors were encountered:
blockingAutomatically assigned to indicate this issue is a blocker for another issue.bugSomething isn't workingminorSeverity: Affects minor functionality or non-critical data. It has an easy workaround.
When inviting a user, we check if the email already exists and if it does we do a reinvite. If it does not exist, we create a new user. The problem is we do the check against the
email
column instead of theemail_lower_case
column. So if we invite[email protected]
and they exist in OIDC as[email protected]
, it will try to create a new user and then fail because theemail_lower_case
field will not be unique.The text was updated successfully, but these errors were encountered: