diff options
| author | Joas Schilling <nickvergessen@gmx.de> | 2013-10-11 11:51:37 +0200 |
|---|---|---|
| committer | Joas Schilling <nickvergessen@gmx.de> | 2013-10-11 11:51:37 +0200 |
| commit | 5d28d22976f7b03e5eb4b2d3a98f1ae560f82da0 (patch) | |
| tree | 30fe61d6705f440b9ea9fb87ba82345bfa196393 | |
| parent | 287400cdf8dc7a03f25f26fdaaafbcc7b5212937 (diff) | |
| download | forums-5d28d22976f7b03e5eb4b2d3a98f1ae560f82da0.tar forums-5d28d22976f7b03e5eb4b2d3a98f1ae560f82da0.tar.gz forums-5d28d22976f7b03e5eb4b2d3a98f1ae560f82da0.tar.bz2 forums-5d28d22976f7b03e5eb4b2d3a98f1ae560f82da0.tar.xz forums-5d28d22976f7b03e5eb4b2d3a98f1ae560f82da0.zip | |
[ticket/11906] Add notification purge cron to cron tasks
PHPBB3-11906
| -rw-r--r-- | phpBB/config/cron_tasks.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/phpBB/config/cron_tasks.yml b/phpBB/config/cron_tasks.yml index 0c9795c0bd..109c9684f9 100644 --- a/phpBB/config/cron_tasks.yml +++ b/phpBB/config/cron_tasks.yml @@ -23,6 +23,16 @@ services: tags: - { name: cron.task } + cron.task.core.prune_notifications: + class: phpbb\cron\task\core\prune_notifications + arguments: + - @config + - @notification_manager + calls: + - [set_name, [cron.task.core.prune_notifications]] + tags: + - { name: cron.task } + cron.task.core.queue: class: phpbb\cron\task\core\queue arguments: |
