decidim-verifications 0.30.2 → 0.30.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/config/locales/eu.yml +4 -4
- 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: b15ed425cd656f12ce15cb54279c9cb7d6e34d517811cfe859889b78390f65cf
         | 
| 4 | 
            +
              data.tar.gz: 584c0a75dd4545b446e6d56b527b35f5691776926a4be40ca665bb8c01e5ab5f
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 076f16d9cab632b7090f3004486caa75dabf4df002937cf28c0ee3e452faa2f381bf9a83dbc5e222e4fec20fe63b460905e352eaf686126e8bc613eb3ba8ada3
         | 
| 7 | 
            +
              data.tar.gz: 8c6260449df964b1e766fa7469c9d09331ac374c63b3243d74ff6202794c0c8fa0938e0cdabf18f7de01507827e18d9d4a41971c79806f76ebcb0ee94d837f84
         | 
    
        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:
         | 
| @@ -224,7 +224,7 @@ eu: | |
| 224 224 | 
             
                          verify: Ziurtatu
         | 
| 225 225 | 
             
                      pending_authorizations:
         | 
| 226 226 | 
             
                        index:
         | 
| 227 | 
            -
                          config:  | 
| 227 | 
            +
                          config: Konfiguratu
         | 
| 228 228 | 
             
                          offline_verification: Off-line egiaztapena
         | 
| 229 229 | 
             
                          title: On-line egiaztapenak zain
         | 
| 230 230 | 
             
                          verification_number: 'Egiaztapena # %{n}'
         | 
| @@ -249,7 +249,7 @@ eu: | |
| 249 249 | 
             
                        rejection_notice: Arazo bat egon da zure egiaztapenarekin. Mesedez, saiatu berriro.
         | 
| 250 250 | 
             
                        send: Eskatu egiaztapena berriro
         | 
| 251 251 | 
             
                      new:
         | 
| 252 | 
            -
                        send:  | 
| 252 | 
            +
                        send: Egiaztapena eskatu
         | 
| 253 253 | 
             
                        title: Igo zure identifikazio agiria
         | 
| 254 254 | 
             
                      update:
         | 
| 255 255 | 
             
                        error: Arazo bat egon da zure dokumentua berriro igotzean.
         | 
| @@ -281,7 +281,7 @@ eu: | |
| 281 281 | 
             
                        waiting_for_letter: Laster gutun bat bidaliko dugu zure helbidera zure egiaztapen-kodearekin.
         | 
| 282 282 | 
             
                      new:
         | 
| 283 283 | 
             
                        send: Bidali iezadazu gutun bat
         | 
| 284 | 
            -
                        title:  | 
| 284 | 
            +
                        title: Egiaztapen-kodea eskatu
         | 
| 285 285 | 
             
                      update:
         | 
| 286 286 | 
             
                        error: Zure egiaztapen-kodea ez dator bat gurearekin. Mesedez, begiratu berriro bidali dizugun gutuna.
         | 
| 287 287 | 
             
                        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.30. | 
| 4 | 
            +
              version: 0.30.3
         | 
| 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.30. | 
| 19 | 
            +
                    version: 0.30.3
         | 
| 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.30. | 
| 26 | 
            +
                    version: 0.30.3
         | 
| 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.30. | 
| 33 | 
            +
                    version: 0.30.3
         | 
| 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.30. | 
| 40 | 
            +
                    version: 0.30.3
         | 
| 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.30. | 
| 47 | 
            +
                    version: 0.30.3
         | 
| 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.30. | 
| 54 | 
            +
                    version: 0.30.3
         | 
| 55 55 | 
             
            description: Several verification methods for your decidim instance
         | 
| 56 56 | 
             
            email:
         | 
| 57 57 | 
             
            - deivid.rodriguez@riseup.net
         |