Skip to content

Commit 322f067

Browse files
committed
fix DatafordelerBase missing configuration keys
1 parent e015a44 commit 322f067

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
* Fixing DatafordelerBase missing configuration keys.
11+
1012
## [3.0.2] - 2025-10-28
1113

1214
* [PR-27](https://github.com/OS2web/os2web_datalookup/pull/27)

src/Plugin/os2web/DataLookup/DatafordelerBase.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,16 @@ public function __construct(
3737
$this->init();
3838
}
3939

40+
/**
41+
* {@inheritdoc}
42+
*/
43+
public function defaultConfiguration(): array {
44+
return [
45+
'cert_path_live' => '',
46+
'cert_passphrase_live' => ''
47+
] + parent::defaultConfiguration();
48+
}
49+
4050
/**
4151
* {@inheritdoc}
4252
*/

0 commit comments

Comments
 (0)