X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/1e98eb99504836794fbfce1cacc6bce93a8e4983..f8367c3ee1418548b5397b6a21f287c2407963e1:/app/controllers/user_controller.rb diff --git a/app/controllers/user_controller.rb b/app/controllers/user_controller.rb index fd58145c4..35b88b65a 100644 --- a/app/controllers/user_controller.rb +++ b/app/controllers/user_controller.rb @@ -14,7 +14,8 @@ class UserController < ApplicationController @user = User.new(params[:user]) @user.data_public = true - + @user.description = "" if @user.description.nil? + if @user.save token = @user.tokens.create flash[:notice] = "User was successfully created. Check your email for a confirmation note, and you\'ll be mapping in no time :-)
Please note that you won't be able to login until you've received and confirmed your email address." @@ -91,6 +92,7 @@ class UserController < ApplicationController user.pass_crypt = pass user.pass_crypt_confirmation = pass user.active = true + user.email_valid = true user.save! token.destroy Notifier::deliver_reset_password(user, pass) @@ -150,6 +152,7 @@ class UserController < ApplicationController if token and !token.user.active? @user = token.user @user.active = true + @user.email_valid = true @user.save! token.destroy flash[:notice] = 'Confirmed your account, thanks for signing up!'