From: Evgeny Mandrikov Date: Tue, 19 Jul 2011 10:27:25 +0000 (+0400) Subject: SONAR-2615 Administrator should be able to change email address of user X-Git-Tag: 2.10~131^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=1bccca066562573932902135b74890783cf46c3a;p=sonarqube.git SONAR-2615 Administrator should be able to change email address of user --- diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/users/index.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/users/index.html.erb index 866363428b6..f7ea9750355 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/users/index.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/users/index.html.erb @@ -7,6 +7,7 @@ Login Name + Email Groups Operations @@ -17,6 +18,7 @@ <%=user.login %> <%=user.name %> + <%=user.email %> <%= user.groups.sort.map(&:name).join(', ') %> (<%= link_to "select", {:action => 'select_group', :id => user.id}, :id => "select-#{u user.login}" %>) @@ -60,6 +62,9 @@ Name:
<%= f.text_field :name, :size => 30, :maxLength => 200 %> + + Email:
<%= f.text_field :email, :size => 30, :maxLength => 100 %> + Password:
<%= f.password_field :password, :size => 30, :maxLength => 50 %>