mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2026-03-19 04:08:06 +00:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
eb2dfc8591
|
|||
| b5a22508ff | |||
| f12bc2f35f |
3
.changes/v4.14.2.md
Normal file
3
.changes/v4.14.2.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
## v4.14.2 - 2026-03-18
|
||||||
|
### Fixed
|
||||||
|
* Fix link inside notification email
|
||||||
@@ -6,6 +6,10 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
|
|||||||
and is generated by [Changie](https://github.com/miniscruff/changie).
|
and is generated by [Changie](https://github.com/miniscruff/changie).
|
||||||
|
|
||||||
|
|
||||||
|
## v4.14.2 - 2026-03-18
|
||||||
|
### Fixed
|
||||||
|
* Fix link inside notification email
|
||||||
|
|
||||||
## v4.14.1 - 2026-03-16
|
## v4.14.1 - 2026-03-16
|
||||||
### Security
|
### Security
|
||||||
* ([#506](https://gitlab.com/Chill-Projet/chill-bundles/-/issues/506)) ([!972](https://gitlab.com/Chill-Projet/chill-bundles/-/merge_requests/972)) Fix permission in list of activities in person context
|
* ([#506](https://gitlab.com/Chill-Projet/chill-bundles/-/issues/506)) ([!972](https://gitlab.com/Chill-Projet/chill-bundles/-/merge_requests/972)) Fix permission in list of activities in person context
|
||||||
|
|||||||
@@ -101,6 +101,9 @@ class NotificationMailer
|
|||||||
if (null === $addressee->getEmail()) {
|
if (null === $addressee->getEmail()) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
if ($notification->getSender() === $addressee) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
$this->processNotificationForAddressee($notification, $addressee);
|
$this->processNotificationForAddressee($notification, $addressee);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,7 +13,12 @@
|
|||||||
> {{ line }}
|
> {{ line }}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
|
{% if dest.isUser %}
|
||||||
[Vous pouvez visualiser la notification et y répondre ici.]({{ absolute_url(path('chill_main_notification_show', {'_locale': dest.locale, 'id': notification.id }, false)) }})
|
[Vous pouvez visualiser la notification et y répondre ici.]({{ absolute_url(path('chill_main_notification_show', {'_locale': dest.locale, 'id': notification.id }, false)) }})
|
||||||
|
{% else %}
|
||||||
|
[Vous pouvez visualiser la notification et y répondre ici.]({{ absolute_url(path('chill_main_notification_grant_access_by_access_key', {'_locale': dest.locale, 'id': notification.id, 'accessKey': notification.accessKey }, false)) }})
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
|
||||||
-----
|
-----
|
||||||
|
|
||||||
|
|||||||
@@ -12,7 +12,11 @@ Titre de la notification: {{ notification.title }}
|
|||||||
> {{ line|raw }}
|
> {{ line|raw }}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
Vous pouvez visualiser la notification et y répondre ici: {{ absolute_url(path('chill_main_notification_show', {'_locale': dest.locale, 'id': notification.id }, false)) }}.
|
{% if dest.isUser %}
|
||||||
|
[Vous pouvez visualiser la notification et y répondre ici.]({{ absolute_url(path('chill_main_notification_show', {'_locale': dest.locale, 'id': notification.id }, false)) }})
|
||||||
|
{% else %}
|
||||||
|
[Vous pouvez visualiser la notification et y répondre ici.]({{ absolute_url(path('chill_main_notification_grant_access_by_access_key', {'_locale': dest.locale, 'id': notification.id, 'accessKey': notification.accessKey }, false)) }})
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
--
|
--
|
||||||
Le logiciel Chill
|
Le logiciel Chill
|
||||||
|
|||||||
Reference in New Issue
Block a user