X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/1c6a83f0e83f7a97301edbe902ef8f5e501e3d0f..4424cd5b947432848fe7f5bc7518fd1b718ecf6c:/app/controllers/user_controller.rb diff --git a/app/controllers/user_controller.rb b/app/controllers/user_controller.rb index bd0c143c0..e998e83c6 100644 --- a/app/controllers/user_controller.rb +++ b/app/controllers/user_controller.rb @@ -11,6 +11,8 @@ class UserController < ApplicationController @title = 'create account' @user = User.new(params[:user]) + @user.data_public = true + 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." @@ -179,7 +181,8 @@ class UserController < ApplicationController if @this_user @title = @this_user.display_name else - render :nothing => true, :status => :not_found + @not_found_user = params[:display_name] + render :action => 'no_such_user', :status => :not_found end end