Skip to content

Commit 75a9a53

Browse files
authored
Merge branch 'develop' into feature/227-add-patch-for-conditionals-based-on-computed-twig
2 parents 2873f63 + f30f893 commit 75a9a53

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ before starting to add changes. Use example [placed in the end of the page](#exa
1414
- [PR-228](https://github.com/OS2Forms/os2forms/pull/228)
1515
Added Drupal Core patch ensuring conditionals based upon computed twig
1616
works as intended.
17+
- [PR-215](https://github.com/OS2Forms/os2forms/pull/215)
18+
Added condition to maestro notification submission handler
1719
- [PR-101](https://github.com/OS2Forms/os2forms/pull/101)
1820
- Added support for `os2web_key` in Digital post
1921
- Switched from saving settings in key value store to config, i.e
@@ -25,6 +27,7 @@ before starting to add changes. Use example [placed in the end of the page](#exa
2527
Remove unused and abandoned package `webmozart/path-util`.
2628
- [PR-167](https://github.com/OS2Forms/os2forms/pull/167)
2729
Adding os2forms_digital_signature module
30+
- [OS-199] Remove modules that are not used and not covered by central maintenance from OS2forms
2831

2932
## [4.1.0] 2025-06-03
3033

composer.json

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,9 @@
1212
"drupal/admin_toolbar": "^3.0",
1313
"drupal/advancedqueue": "^1.0",
1414
"drupal/cache_control_override": "^1.1 || ^2.0",
15-
"drupal/clientside_validation": "^4.0",
1615
"drupal/coc_forms_auto_export": "^3.0@alpha",
1716
"drupal/config_entity_revisions": "2.0.x-dev",
1817
"drupal/diff": "^1.0",
19-
"drupal/embed": "^1.4",
2018
"drupal/entity_print": "^2.1",
2119
"drupal/eu_cookie_compliance": "^1.8",
2220
"drupal/events_logging": "^2.0@beta",

modules/os2forms_forloeb/src/MaestroHelper.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,7 @@ private function sendNotification(
239239
|| $handler->isDisabled()
240240
|| $handler->isExcluded()
241241
|| !$handler->isNotificationEnabled($notificationType)
242+
|| !$handler->checkConditions($submission)
242243
) {
243244
continue;
244245
}

0 commit comments

Comments
 (0)