X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/b4c0bfd8fa324a4c9d8b24e8753d134524ea61c7..85f197b6df81cef19fe6a2a1cfc0429ea50051c7:/app/controllers/user_controller.rb diff --git a/app/controllers/user_controller.rb b/app/controllers/user_controller.rb index da27a95dc..3012765d2 100644 --- a/app/controllers/user_controller.rb +++ b/app/controllers/user_controller.rb @@ -1,6 +1,32 @@ class UserController < ApplicationController + def save + @user = User.new(params[:user]) + @user.set_defaults + + if @user.save + flash[:notice] = 'Users was successfully created.' + Notifier::deliver_signup_confirm(@user) + redirect_to :action => 'login' + else + render :action => 'new' + end + end + def new end + + def confirm + @user = User.find_by_token(params[:confirm_string]) + if @user && @user.active == 0 + @user.active = true + @user.save + flash[:notice] = 'Confirmed your account' + redirect_to :action => 'login' + else + flash[:notice] = 'Something went wrong confirming that user' + end + end + end