Add option to disable username changing
This commit is contained in:
parent
72e2a49819
commit
de7012c4fb
4 changed files with 29 additions and 24 deletions
|
@ -51,7 +51,9 @@ class ProfilesController < ApplicationController
|
|||
end
|
||||
|
||||
def update_username
|
||||
@user.update_attributes(username: params[:user][:username])
|
||||
if Gitlab.config.gitlab.username_changing_enabled
|
||||
@user.update_attributes(username: params[:user][:username])
|
||||
end
|
||||
|
||||
respond_to do |format|
|
||||
format.js
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue