About admin notifications - #3371
Open
adriendupuis wants to merge 4 commits into
Open
Conversation
Preview of modified filesPreview of modified Markdown: |
Summary
|
adriendupuis
marked this pull request as ready for review
August 28, 2026 08:29
mnocon
reviewed
Aug 28, 2026
| - `Ibexa\Share\Notification\ContentEditInvitationNotification` (alias `ibexa_content_edit_invitation`) | ||
| - `Ibexa\Share\Notification\ContentViewInvitationNotification` (alias `ibexa_content_view_invitation`) | ||
| - `Ibexa\Share\Notification\ExternalParticipantContentViewInvitationNotification` (alias `ibexa_external_participant_content_view_invitation`) | ||
| - `Ibexa\AdminUi\Notifier\Notification\UserInvitation` |
Contributor
There was a problem hiding this comment.
Do you think it makes sense to explain the difference between Ibexa\AdminUi\Notifier\Notification\UserInvitation and Ibexa\Contracts\User\Notification\UserInvitation ?
Some kind of table where the action triggering the notification is described?
( understand this could be a follow-up)
Contributor
Author
adriendupuis
commented
Aug 28, 2026
Comment on lines
+87
to
+89
| ```bash | ||
| php bin/console ibexa:debug:config notifications.subscriptions --siteaccess=admin | ||
| ``` |
Contributor
Author
There was a problem hiding this comment.
I could expose the default result. --json | jq is optional, it rturn unformmated but readable JSON by default. I don't know what to do with FormSubmitted from ibexa/recipes-dev#257
It seems not immediately needed but it could be needed in the rare case someone use the form builder for an admin form.
Suggested change
| ```bash | |
| php bin/console ibexa:debug:config notifications.subscriptions --siteaccess=admin | |
| ``` | |
| ```bash | |
| php bin/console ibexa:debug:config notifications.subscriptions --siteaccess=admin --json | jq | |
| ``` | |
| ```json | |
| { | |
| "ibexa_content_edit_invitation": { | |
| "channels": [ | |
| "ibexa", | |
| "email" | |
| ] | |
| }, | |
| "ibexa_content_view_invitation": { | |
| "channels": [ | |
| "ibexa", | |
| "email" | |
| ] | |
| }, | |
| "ibexa_external_participant_content_view_invitation": { | |
| "channels": [ | |
| "email" | |
| ] | |
| }, | |
| "Ibexa\\AdminUi\\Notifier\\Notification\\UserPasswordReset": { | |
| "channels": [ | |
| "email" | |
| ] | |
| }, | |
| "Ibexa\\AdminUi\\Notifier\\Notification\\UserInvitation": { | |
| "channels": [ | |
| "email" | |
| ] | |
| }, | |
| "Ibexa\\Contracts\\FormBuilder\\Notifications\\FormSubmitted": { | |
| "channels": [ | |
| "email" | |
| ] | |
| } | |
| } | |
| ``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Inspired by ibexa/recipes-dev#257
Checklist