diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-03-20 16:52:23 -0700 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2015-03-20 16:52:23 -0700 |
commit | 6ef20926ee4cd7cefc6aaff9346a964a34f64a89 (patch) | |
tree | 4793bddfac03fb082d0741e3a2f3f2c9fd13092c /app/controllers/profiles_controller.rb | |
parent | 476199e0691edd956764ace45264511048fe6eb1 (diff) | |
download | gitlab-ce-6ef20926ee4cd7cefc6aaff9346a964a34f64a89.tar.gz |
Add location to user profile
Diffstat (limited to 'app/controllers/profiles_controller.rb')
-rw-r--r-- | app/controllers/profiles_controller.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/profiles_controller.rb b/app/controllers/profiles_controller.rb index 1b9a86ee42c..fcdd5b8b1d1 100644 --- a/app/controllers/profiles_controller.rb +++ b/app/controllers/profiles_controller.rb @@ -68,7 +68,7 @@ class ProfilesController < ApplicationController params.require(:user).permit( :email, :password, :password_confirmation, :bio, :name, :username, :skype, :linkedin, :twitter, :website_url, :color_scheme_id, :theme_id, - :avatar, :hide_no_ssh_key, :hide_no_password + :avatar, :hide_no_ssh_key, :hide_no_password, :location ) end end |