mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-23 16:13:50 +00:00
Feature: add cc users in workflow: move isNotificationCc to WorkflowNotificationHandler
This commit is contained in:
@@ -6,7 +6,6 @@
|
||||
'full_content': true,
|
||||
'fold_item': true,
|
||||
'action_button': true,
|
||||
'notification_cc': notificationCc,
|
||||
} %}{#
|
||||
#}
|
||||
{% endfor %}
|
||||
|
@@ -51,7 +51,7 @@
|
||||
{% set notification = data.notification %}
|
||||
{% include 'ChillMainBundle:Notification:_list_item.html.twig' with {
|
||||
'fold_item': true,
|
||||
'notification_cc': data.isNotificationCc
|
||||
'notification_cc': data.template_data.notificationCc is defined ? data.template_data.notificationCc : false
|
||||
} %}
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
@@ -28,7 +28,7 @@
|
||||
'action_button': false,
|
||||
'full_content': true,
|
||||
'fold_item': false,
|
||||
'notification_cc': notificationCc
|
||||
'notification_cc': handler.getTemplateData(notification).notificationCc is defined ? handler.getTemplateData(notification).notificationCc : false
|
||||
} %}
|
||||
</div>
|
||||
|
||||
|
Reference in New Issue
Block a user