1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/17010] Add webpush to container definition

PHPBB3-17010
This commit is contained in:
Marc Alexander
2022-08-17 22:29:23 +02:00
parent 07d3376612
commit 5c51f2ef7f
5 changed files with 16 additions and 0 deletions

View File

@@ -243,3 +243,15 @@ services:
- '%core.php_ext%'
tags:
- { name: notification.method }
notification.method.webpush:
class: phpbb\notification\method\webpush
shared: false
arguments:
- '@user_loader'
- '@user'
- '@config'
- '@dbal.conn'
- '%core.root_path%'
- '%core.php_ext%'
- '%tables.notification_push%'

View File

@@ -38,6 +38,7 @@ parameters:
tables.modules: '%core.table_prefix%modules'
tables.notification_emails: '%core.table_prefix%notification_emails'
tables.notification_types: '%core.table_prefix%notification_types'
tables.notification_push: '%core.table_prefix%notification_push'
tables.notifications: '%core.table_prefix%notifications'
tables.poll_options: '%core.table_prefix%poll_options'
tables.poll_votes: '%core.table_prefix%poll_votes'