Skip to content

Commit 3101b54

Browse files
authored
Merge pull request #28 from OS2web/h/datafordeler_configuration
fix DatafordelerBase missing configuration keys
2 parents e015a44 + 839c83a commit 3101b54

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [3.0.3] - 2025-11-19
11+
12+
* [PR-28](https://github.com/OS2web/os2web_datalookup/pull/28)
13+
Fixing DatafordelerBase missing configuration keys.
14+
1015
## [3.0.2] - 2025-10-28
1116

1217
* [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)