Forgot a comma
This commit is contained in:
parent
49c30425c1
commit
2c4cad2b4c
1 changed files with 1 additions and 1 deletions
|
|
@ -54,7 +54,7 @@ def create(backer_number, password)
|
|||
email = backer_info[backer_number][2].gsub(/ /,'').downcase
|
||||
user = User.create( :email => "#{email}@joindiaspora.com",
|
||||
:password => "#{email+backer_info[backer_number][0].to_s}",
|
||||
:profile => Profile.create( :first_name => backer_info[backer_number][1], :last_name => backer_info[backer_number][2] )
|
||||
:profile => Profile.create( :first_name => backer_info[backer_number][1], :last_name => backer_info[backer_number][2] ),
|
||||
:url=> "#{email}.joindiaspora.com")
|
||||
|
||||
# Make connection with Diaspora Tom
|
||||
|
|
|
|||
Loading…
Reference in a new issue