decidim-friendly_signup 0.4.2 → 0.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/controllers/decidim/devise/registrations_controller.rb +64 -0
- data/app/mailers/decidim/friendly_signup/confirmation_codes_mailer.rb +11 -0
- data/app/views/decidim/friendly_signup/confirmation_codes_mailer/confirmation_instructions.html.erb +1 -1
- data/config/locales/ca.yml +110 -0
- data/config/locales/de.yml +110 -0
- data/config/locales/en.yml +9 -0
- data/config/locales/es.yml +110 -0
- data/config/locales/eu.yml +110 -0
- data/config/locales/fr.yml +110 -0
- data/lib/decidim/form_builder.rb +915 -0
- data/lib/decidim/friendly_signup/user_attribute_validator.rb +4 -1
- data/lib/decidim/friendly_signup/version.rb +1 -1
- metadata +9 -2
@@ -14,6 +14,8 @@ module Decidim
|
|
14
14
|
def valid?
|
15
15
|
@valid ||= begin
|
16
16
|
form.validate
|
17
|
+
# Check if the password isn't empty, if it is, add it to form errors
|
18
|
+
form.errors.add(:password, :password_blank) if attribute == "password" && form.password.blank?
|
17
19
|
# we don't validate the form but the attribute alone
|
18
20
|
errors.blank?
|
19
21
|
end
|
@@ -60,7 +62,8 @@ module Decidim
|
|
60
62
|
:password_not_allowed,
|
61
63
|
:password_too_common,
|
62
64
|
:password_too_long,
|
63
|
-
:password_too_short
|
65
|
+
:password_too_short,
|
66
|
+
:password_blank].find { |key| msg == I18n.t(key, scope: "password_validator") }
|
64
67
|
else
|
65
68
|
[:blank, :invalid, :taken].find { |key| msg == I18n.t(key, scope: "errors.messages") }
|
66
69
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: decidim-friendly_signup
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ivan Vergés
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-02-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: decidim-core
|
@@ -50,6 +50,7 @@ files:
|
|
50
50
|
- Rakefile
|
51
51
|
- app/controllers/concerns/decidim/friendly_signup/needs_header_snippets.rb
|
52
52
|
- app/controllers/concerns/decidim/friendly_signup/registrations_redirect.rb
|
53
|
+
- app/controllers/decidim/devise/registrations_controller.rb
|
53
54
|
- app/controllers/decidim/friendly_signup/application_controller.rb
|
54
55
|
- app/controllers/decidim/friendly_signup/confirmation_codes_controller.rb
|
55
56
|
- app/controllers/decidim/friendly_signup/validator_controller.rb
|
@@ -77,7 +78,13 @@ files:
|
|
77
78
|
- app/views/decidim/friendly_signup/shared/_password_fields.html.erb
|
78
79
|
- config/assets.rb
|
79
80
|
- config/i18n-tasks.yml
|
81
|
+
- config/locales/ca.yml
|
82
|
+
- config/locales/de.yml
|
80
83
|
- config/locales/en.yml
|
84
|
+
- config/locales/es.yml
|
85
|
+
- config/locales/eu.yml
|
86
|
+
- config/locales/fr.yml
|
87
|
+
- lib/decidim/form_builder.rb
|
81
88
|
- lib/decidim/friendly_signup.rb
|
82
89
|
- lib/decidim/friendly_signup/engine.rb
|
83
90
|
- lib/decidim/friendly_signup/user_attribute_validator.rb
|