Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ibexa/*] Added symfony/notifier subscriptions #127

Merged
merged 2 commits into from
Jul 24, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions ibexa/commerce/5.0/config/packages/ibexa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,14 @@ ibexa:

page_layout: "@ibexadesign/pagelayout.html.twig"
user_content_type_identifier: ['user', 'customer', 'member']
notifier:
subscriptions:
Ibexa\Contracts\User\Notification\UserPasswordReset:
channels:
- email
Comment on lines +126 to +127
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

One question - this doesn't seem to be used in ibexa/user. We seem to always send an email (based on what I saw in the PR). Is this correct? Are we even making use of this setting?

Ibexa\Contracts\User\Notification\UserInvitation:
channels:
- email
site:
languages: [eng-GB]
user_content_type_identifier: ['customer']
Expand Down
8 changes: 8 additions & 0 deletions ibexa/experience/5.0/config/packages/ibexa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,14 @@ ibexa:

page_layout: "@ibexadesign/pagelayout.html.twig"
user_content_type_identifier: ['user']
notifier:
subscriptions:
Ibexa\Contracts\User\Notification\UserPasswordReset:
channels:
- email
Ibexa\Contracts\User\Notification\UserInvitation:
channels:
- email
site:
languages: [eng-GB]

Expand Down
8 changes: 8 additions & 0 deletions ibexa/headless/5.0/config/packages/ibexa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,14 @@ ibexa:

page_layout: "@ibexadesign/pagelayout.html.twig"
user_content_type_identifier: ['user']
notifier:
subscriptions:
Ibexa\Contracts\User\Notification\UserPasswordReset:
channels:
- email
Ibexa\Contracts\User\Notification\UserInvitation:
channels:
- email
site:
languages: [eng-GB]

Expand Down
9 changes: 8 additions & 1 deletion ibexa/oss/5.0/config/packages/ibexa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,14 @@ ibexa:
icon_sets:
public_icons: /bundles/ibexaadminui/img/ibexa-icons.svg
default_icon_set: public_icons

notifier:
subscriptions:
Ibexa\Contracts\User\Notification\UserPasswordReset:
channels:
- email
Ibexa\Contracts\User\Notification\UserInvitation:
channels:
- email
site:
languages: [eng-GB]

Expand Down
Loading