decidim-verifications 0.29.5 → 0.29.6
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/config/locales/eu.yml +5 -5
- data/lib/decidim/verifications/adapter.rb +3 -3
- data/lib/decidim/verifications/version.rb +1 -1
- metadata +8 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f90c5438e0ea4d849d6a6dc33cb3624eaf780cc07f3fc65b96ba617ac836a3e7
|
|
4
|
+
data.tar.gz: 1710fc1d0b36f457531896799197192c09c4f8a3bce4c4158534d5f421dacb0f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 80f6dd0bfaf510500302e5460bd8ea3c3fbc13fbfc95dc839feb1aa5d6a81525ae2e14c96ad263e30e4613f9344eb64ea75117367589c9f1bbc402ea85e3b95b
|
|
7
|
+
data.tar.gz: 07b8c86813132d0440b0c853b2dfc028bd373fb111a77f002dd380d95cfbde61de965bdebb064a6dd41a017fdb46a6eae33cd19f1e4650858d0c8bea758c468f
|
data/config/locales/eu.yml
CHANGED
|
@@ -16,7 +16,7 @@ eu:
|
|
|
16
16
|
document_type: Dokumentu mota
|
|
17
17
|
id_document_upload:
|
|
18
18
|
document_number: Dokumentuaren zenbakia (letraz)
|
|
19
|
-
document_type:
|
|
19
|
+
document_type: Dokumentuaren mota
|
|
20
20
|
user: Parte-hartzaileak
|
|
21
21
|
verification_attachment: Zure dokumentuaren eskaneatutako kopia
|
|
22
22
|
mobile_phone:
|
|
@@ -130,7 +130,7 @@ eu:
|
|
|
130
130
|
first_login:
|
|
131
131
|
actions:
|
|
132
132
|
another_dummy_authorization_handler: Egiaztatu baimenen kudeatzailearen beste adibide baten aurka
|
|
133
|
-
csv_census: Egiaztatu erakundearen
|
|
133
|
+
csv_census: Egiaztatu erakundearen erroldaren bidez
|
|
134
134
|
dummy_authorization_handler: Egiaztatu adibide-baimenaren kudeatzailearen aurka
|
|
135
135
|
dummy_authorization_workflow: Egiaztatu baimenen laneko fluxuaren aurka
|
|
136
136
|
id_documents: Egiaztatu zure identifikazio dokumentua kargatzen
|
|
@@ -223,7 +223,7 @@ eu:
|
|
|
223
223
|
verify: Ziurtatu
|
|
224
224
|
pending_authorizations:
|
|
225
225
|
index:
|
|
226
|
-
config:
|
|
226
|
+
config: Konfiguratu
|
|
227
227
|
offline_verification: Off-line egiaztapena
|
|
228
228
|
title: On-line egiaztapenak zain
|
|
229
229
|
verification_number: 'Egiaztapena # %{n}'
|
|
@@ -248,7 +248,7 @@ eu:
|
|
|
248
248
|
rejection_notice: Arazo bat egon da zure egiaztapenarekin. Mesedez, saiatu berriro.
|
|
249
249
|
send: Eskatu egiaztapena berriro
|
|
250
250
|
new:
|
|
251
|
-
send:
|
|
251
|
+
send: Egiaztapena eskatu
|
|
252
252
|
title: Igo zure identifikazio agiria
|
|
253
253
|
update:
|
|
254
254
|
error: Arazo bat egon da zure dokumentua berriro igotzean.
|
|
@@ -280,7 +280,7 @@ eu:
|
|
|
280
280
|
waiting_for_letter: Laster gutun bat bidaliko dugu zure helbidera zure egiaztapen-kodearekin.
|
|
281
281
|
new:
|
|
282
282
|
send: Bidali iezadazu gutun bat
|
|
283
|
-
title:
|
|
283
|
+
title: Egiaztapen-kodea eskatu
|
|
284
284
|
update:
|
|
285
285
|
error: Zure egiaztapen-kodea ez dator bat gurearekin. Mesedez, begiratu berriro bidali dizugun gutuna.
|
|
286
286
|
success: Zorionak! Zuzen egiaztatu zara.
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
module Decidim
|
|
4
4
|
module Verifications
|
|
5
5
|
class InvalidVerificationRoute < StandardError
|
|
6
|
-
def
|
|
6
|
+
def initialize(route:)
|
|
7
7
|
msg = <<~MSG
|
|
8
8
|
You specified a direct handler but you are trying to use `#{route}`
|
|
9
9
|
which is only available for multi-step authorization workflows. Change
|
|
@@ -15,7 +15,7 @@ module Decidim
|
|
|
15
15
|
end
|
|
16
16
|
|
|
17
17
|
class MissingVerificationRoute < StandardError
|
|
18
|
-
def
|
|
18
|
+
def initialize(handler:, route:, action:)
|
|
19
19
|
msg = <<~MSG
|
|
20
20
|
The authorization handler `#{handler}` does not define the route
|
|
21
21
|
`#{route}`. If you want to enable `#{action}` for `#{handler}`, change
|
|
@@ -27,7 +27,7 @@ module Decidim
|
|
|
27
27
|
end
|
|
28
28
|
|
|
29
29
|
class MissingEngine < StandardError
|
|
30
|
-
def
|
|
30
|
+
def initialize(handler:, engine:)
|
|
31
31
|
msg = <<~MSG
|
|
32
32
|
The authorization handler `#{handler}` does not define the `#{engine}`
|
|
33
33
|
engine. Please define the engine in the workflow configuration.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: decidim-verifications
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.29.
|
|
4
|
+
version: 0.29.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Rodriguez
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-
|
|
11
|
+
date: 2025-10-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: decidim-core
|
|
@@ -16,42 +16,42 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - '='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.29.
|
|
19
|
+
version: 0.29.6
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - '='
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 0.29.
|
|
26
|
+
version: 0.29.6
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: decidim-admin
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
31
|
- - '='
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 0.29.
|
|
33
|
+
version: 0.29.6
|
|
34
34
|
type: :development
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - '='
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: 0.29.
|
|
40
|
+
version: 0.29.6
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: decidim-dev
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
44
44
|
requirements:
|
|
45
45
|
- - '='
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: 0.29.
|
|
47
|
+
version: 0.29.6
|
|
48
48
|
type: :development
|
|
49
49
|
prerelease: false
|
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
52
|
- - '='
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
|
-
version: 0.29.
|
|
54
|
+
version: 0.29.6
|
|
55
55
|
description: Several verification methods for your decidim instance
|
|
56
56
|
email:
|
|
57
57
|
- deivid.rodriguez@riseup.net
|