Exception: Decidim::Verifications::MissingEngine
- Inherits:
-
StandardError
- Object
- StandardError
- Decidim::Verifications::MissingEngine
- Defined in:
- lib/decidim/verifications/adapter.rb
Instance Method Summary collapse
-
#initialize(handler:, engine:) ⇒ MissingEngine
constructor
A new instance of MissingEngine.
Constructor Details
#initialize(handler:, engine:) ⇒ MissingEngine
Returns a new instance of MissingEngine.
30 31 32 33 34 35 36 37 |
# File 'lib/decidim/verifications/adapter.rb', line 30 def initialize(handler:, engine:) msg = <<~MSG The authorization handler `#{handler}` does not define the `#{engine}` engine. Please define the engine in the workflow configuration. MSG super(msg) end |