We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e015a44 commit 322f067Copy full SHA for 322f067
CHANGELOG.md
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
8
## [Unreleased]
9
10
+* Fixing DatafordelerBase missing configuration keys.
11
+
12
## [3.0.2] - 2025-10-28
13
14
* [PR-27](https://github.com/OS2web/os2web_datalookup/pull/27)
src/Plugin/os2web/DataLookup/DatafordelerBase.php
@@ -37,6 +37,16 @@ public function __construct(
37
$this->init();
38
}
39
40
+ /**
41
+ * {@inheritdoc}
42
+ */
43
+ public function defaultConfiguration(): array {
44
+ return [
45
+ 'cert_path_live' => '',
46
+ 'cert_passphrase_live' => ''
47
+ ] + parent::defaultConfiguration();
48
+ }
49
50
/**
51
* {@inheritdoc}
52
*/
0 commit comments