Merge pull request #780 from jroes/fix-778

Strip whitespace when changing e-mail addresses
This commit is contained in:
Jeff Atwood 2013-04-28 02:03:30 -07:00
commit 9e3b70c20e
2 changed files with 5 additions and 1 deletions

View File

@ -265,7 +265,7 @@ class UsersController < ApplicationController
requires_parameter(:email)
user = fetch_user_from_params
guardian.ensure_can_edit!(user)
lower_email = Email.downcase(params[:email])
lower_email = Email.downcase(params[:email]).strip
# Raise an error if the email is already in use
if User.where("email = ?", lower_email).exists?

View File

@ -192,6 +192,10 @@ describe UsersController do
it 'raises an error' do
lambda { xhr :put, :change_email, username: user.username, email: other_user.email }.should raise_error(Discourse::InvalidParameters)
end
it 'raises an error if there is whitespace too' do
lambda { xhr :put, :change_email, username: user.username, email: other_user.email + ' ' }.should raise_error(Discourse::InvalidParameters)
end
end
context 'success' do