Commit 8083c69940bd68063822c8b064538c6861f726bf

Authored by Sergio Oliveira
1 parent 421d97c0

Added password validator for gitlab

(cherry picked from commit dbdf7b11fb42b881386f1bf7772dc48e35c51c30)
Showing 1 changed file with 4 additions and 0 deletions   Show diff stats
cookbooks/colab/templates/gitlab.py.erb
@@ -38,3 +38,7 @@ menu_urls = ( @@ -38,3 +38,7 @@ menu_urls = (
38 kwargs={'path': 'merge_requests'}, auth=True), 38 kwargs={'path': 'merge_requests'}, auth=True),
39 39
40 ) 40 )
  41 +
  42 +password_validators = (
  43 + 'colab_gitlab.password_validators.min_length',
  44 +)