Make sure invites is not set to nil
This commit is contained in:
parent
591915a2cd
commit
a688e47934
1 changed files with 1 additions and 1 deletions
|
|
@ -41,7 +41,7 @@ class Invitation < ActiveRecord::Base
|
||||||
def self.create_invitee(opts = {})
|
def self.create_invitee(opts = {})
|
||||||
invitee = new_or_existing_user_by_email(opts[:email])
|
invitee = new_or_existing_user_by_email(opts[:email])
|
||||||
return invitee unless opts[:email].match Devise.email_regexp
|
return invitee unless opts[:email].match Devise.email_regexp
|
||||||
invitee.invites = opts[:invites]
|
invitee.invites = opts[:invites] || 0
|
||||||
if invitee.new_record?
|
if invitee.new_record?
|
||||||
invitee.errors.clear
|
invitee.errors.clear
|
||||||
invitee.serialized_private_key ||= User.generate_key
|
invitee.serialized_private_key ||= User.generate_key
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue