mirror of
https://github.com/discourse/discourse.git
synced 2024-12-16 04:23:44 +08:00
FIX: invited user should not be able to redeem invite as admin
This commit is contained in:
parent
7ad2703397
commit
2fdbde0253
|
@ -19,7 +19,7 @@ InviteRedeemer = Struct.new(:invite, :username, :name, :password) do
|
|||
|
||||
# extracted from User cause it is very specific to invites
|
||||
def self.create_user_from_invite(invite, username, name, password=nil)
|
||||
user_exists = User.find_by_email(invite.email)
|
||||
user_exists = User.where(admin: false).find_by_email(invite.email)
|
||||
return user if user_exists
|
||||
|
||||
if username && UsernameValidator.new(username).valid_format? && User.username_available?(username)
|
||||
|
|
Loading…
Reference in New Issue
Block a user