user name changes: don't force new name to lowercase.

This commit is contained in:
evazion
2017-05-07 09:53:13 -05:00
parent 78b08d8394
commit 087ce001e7
3 changed files with 13 additions and 4 deletions

View File

@@ -37,10 +37,6 @@ class UserNameChangeRequest < ActiveRecord::Base
status == "pending"
end
def desired_name=(name)
super(User.normalize_name(name))
end
def feedback
UserFeedback.for_user(user_id).order("id desc")
end