decidim-verifications 0.31.0.rc1 → 0.31.0.rc2
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/cs.yml +1 -0
- 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: d2fee14b702b7ff30bfe016f30da194a43c12957a4034cb985adaf8a3212db5d
|
|
4
|
+
data.tar.gz: f190069d15cbe425c848f1d066922b3d00c8acbe702f54f13772283a583fc668
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 26f6ce9c3eb1f36018cfa5a3d74ae14f24309ad33d8382368e803779544498e9f57fee6136dff3dfa4df7fd3a12a715e8586dcac679efc5acc7f0e176e7adf6d
|
|
7
|
+
data.tar.gz: 3077d45d120b9f30289d69fc02285ea3896e967f544e0c6cecbac03ad6f7e41890cc9ecb8b7490eab5ce3fec07ff92614392c019bec66c4cb3798aae7afcabe4
|
data/config/locales/cs.yml
CHANGED
|
@@ -289,6 +289,7 @@ cs:
|
|
|
289
289
|
pending_authorizations:
|
|
290
290
|
index:
|
|
291
291
|
address: Adresa
|
|
292
|
+
already_sent: Poštovní dopis již byl odeslán a nemůže být znovu označen jako odeslaný.
|
|
292
293
|
letter_sent_at: Dopis zaslaný na
|
|
293
294
|
mark_as_sent: Označit jako odesláno
|
|
294
295
|
not_yet_sent: Dosud nebyla odeslána
|
data/config/locales/eu.yml
CHANGED
|
@@ -18,7 +18,7 @@ eu:
|
|
|
18
18
|
document_type: Dokumentu mota
|
|
19
19
|
id_document_upload:
|
|
20
20
|
document_number: Dokumentuaren zenbakia (letraz)
|
|
21
|
-
document_type:
|
|
21
|
+
document_type: Dokumentuaren mota
|
|
22
22
|
user: Parte-hartzaileak
|
|
23
23
|
verification_attachment: Zure dokumentuaren eskaneatutako kopia
|
|
24
24
|
mobile_phone:
|
|
@@ -219,7 +219,7 @@ eu:
|
|
|
219
219
|
created_at: Noiz sortua
|
|
220
220
|
email: Helbide elektronikoa
|
|
221
221
|
user_authorized: Parte-hartzailea baimendua?
|
|
222
|
-
import_csv: Inportatu CSV
|
|
222
|
+
import_csv: Inportatu CSV fitxategia
|
|
223
223
|
no_authorized: Parte-hartzailea ez baimendua
|
|
224
224
|
title: Erroldako oraingo datuak
|
|
225
225
|
instructions:
|
|
@@ -268,7 +268,7 @@ eu:
|
|
|
268
268
|
verify: Ziurtatu
|
|
269
269
|
pending_authorizations:
|
|
270
270
|
index:
|
|
271
|
-
config:
|
|
271
|
+
config: Konfiguratu
|
|
272
272
|
offline_verification: Off-line egiaztapena
|
|
273
273
|
title: On-line egiaztapenak zain
|
|
274
274
|
verification_number: 'Egiaztapena # %{n}'
|
|
@@ -293,7 +293,7 @@ eu:
|
|
|
293
293
|
rejection_notice: Arazo bat egon da zure egiaztapenarekin. Mesedez, saiatu berriro.
|
|
294
294
|
send: Eskatu egiaztapena berriro
|
|
295
295
|
new:
|
|
296
|
-
send:
|
|
296
|
+
send: Egiaztapena eskatu
|
|
297
297
|
title: Igo zure identifikazio agiria
|
|
298
298
|
update:
|
|
299
299
|
error: Arazo bat egon da zure dokumentua berriro igotzean.
|
|
@@ -326,7 +326,7 @@ eu:
|
|
|
326
326
|
waiting_for_letter: Laster gutun bat bidaliko dugu zure helbidera zure egiaztapen-kodearekin.
|
|
327
327
|
new:
|
|
328
328
|
send: Bidali iezadazu gutun bat
|
|
329
|
-
title:
|
|
329
|
+
title: Egiaztapen-kodea eskatu
|
|
330
330
|
update:
|
|
331
331
|
error: Zure egiaztapen-kodea ez dator bat gurearekin. Mesedez, begiratu berriro bidali dizugun gutuna.
|
|
332
332
|
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.31.0.
|
|
4
|
+
version: 0.31.0.rc2
|
|
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.31.0.
|
|
19
|
+
version: 0.31.0.rc2
|
|
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.31.0.
|
|
26
|
+
version: 0.31.0.rc2
|
|
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.31.0.
|
|
33
|
+
version: 0.31.0.rc2
|
|
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.31.0.
|
|
40
|
+
version: 0.31.0.rc2
|
|
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.31.0.
|
|
47
|
+
version: 0.31.0.rc2
|
|
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.31.0.
|
|
54
|
+
version: 0.31.0.rc2
|
|
55
55
|
description: Several verification methods for your decidim instance
|
|
56
56
|
email:
|
|
57
57
|
- deivid.rodriguez@riseup.net
|