Skip to content
Snippets Groups Projects

Include coverage reports from child pipeline

All threads resolved!
11 files
+ 401
0
Compare changes
  • Side-by-side
  • Inline
Files
11
  • Changelog: added
    MR: !82798
    EE: true
    
    Feat: update password complexity requirements
    
    Refactor: improve the random password strength
    
    Refactor: not touch the default random password if no password complexity policies
    
    Fix: skip password complexity validation for user updating
# frozen_string_literal: true
class AddPasswordCharsRequirementToApplicationSettings < Gitlab::Database::Migration[2.0]
def change
add_column :application_settings, :password_uppercase_required, :boolean, default: false, null: false
add_column :application_settings, :password_lowercase_required, :boolean, default: false, null: false
add_column :application_settings, :password_number_required, :boolean, default: false, null: false
add_column :application_settings, :password_symbol_required, :boolean, default: false, null: false
end
end
Loading