diff options
Diffstat (limited to 'app/controllers')
| -rw-r--r-- | app/controllers/admin/users_controller.rb | 2 | ||||
| -rw-r--r-- | app/controllers/profiles/passwords_controller.rb | 8 | ||||
| -rw-r--r-- | app/controllers/profiles_controller.rb | 2 | 
3 files changed, 7 insertions, 5 deletions
diff --git a/app/controllers/admin/users_controller.rb b/app/controllers/admin/users_controller.rb index 232f30b759d..ecedb31a7f8 100644 --- a/app/controllers/admin/users_controller.rb +++ b/app/controllers/admin/users_controller.rb @@ -121,7 +121,7 @@ class Admin::UsersController < Admin::ApplicationController      params.require(:user).permit(        :email, :remember_me, :bio, :name, :username,        :skype, :linkedin, :twitter, :website_url, :color_scheme_id, :theme_id, :force_random_password, -      :extern_uid, :provider, :password_expires_at, :avatar, :hide_no_ssh_key, +      :extern_uid, :provider, :password_expires_at, :avatar, :hide_no_ssh_key, :hide_no_password,        :projects_limit, :can_create_group, :admin, :key_id      )    end diff --git a/app/controllers/profiles/passwords_controller.rb b/app/controllers/profiles/passwords_controller.rb index 1191ce47eba..0c614969a3f 100644 --- a/app/controllers/profiles/passwords_controller.rb +++ b/app/controllers/profiles/passwords_controller.rb @@ -11,7 +11,7 @@ class Profiles::PasswordsController < ApplicationController    end    def create -    unless @user.valid_password?(user_params[:current_password]) +    unless @user.password_automatically_set || @user.valid_password?(user_params[:current_password])        redirect_to new_profile_password_path, alert: 'You must provide a valid current password'        return      end @@ -21,7 +21,8 @@ class Profiles::PasswordsController < ApplicationController      result = @user.update_attributes(        password: new_password, -      password_confirmation: new_password_confirmation +      password_confirmation: new_password_confirmation, +      password_automatically_set: false      )      if result @@ -39,8 +40,9 @@ class Profiles::PasswordsController < ApplicationController      password_attributes = user_params.select do |key, value|        %w(password password_confirmation).include?(key.to_s)      end +    password_attributes[:password_automatically_set] = false -    unless @user.valid_password?(user_params[:current_password]) +    unless @user.password_automatically_set || @user.valid_password?(user_params[:current_password])        redirect_to edit_profile_password_path, alert: 'You must provide a valid current password'        return      end diff --git a/app/controllers/profiles_controller.rb b/app/controllers/profiles_controller.rb index c0b7e2223a2..f7584c03411 100644 --- a/app/controllers/profiles_controller.rb +++ b/app/controllers/profiles_controller.rb @@ -67,7 +67,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, +      :avatar, :hide_no_ssh_key, :hide_no_password      )    end  end  | 
