forked from fabarea/messenger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServices.yaml
More file actions
40 lines (32 loc) · 1.1 KB
/
Copy pathServices.yaml
File metadata and controls
40 lines (32 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
services:
_defaults:
autowire: true
autoconfigure: true
public: true
Fab\Messenger\Controller\:
resource: '../Classes/Controller/*'
tags: ['backend.controller']
arguments:
$view: '@TYPO3\CMS\Backend\View\BackendViewFactory'
Fab\Messenger\Controller\AdminModuleController:
tags: [ 'backend.controller' ]
Fab\Messenger\Controller\MessageTemplateController:
arguments:
$moduleTemplateFactory: '@TYPO3\CMS\Backend\Template\ModuleTemplateFactory'
$iconFactory: '@TYPO3\CMS\Core\Imaging\IconFactory'
$dataExportService: '@Fab\Messenger\Service\DataExportService'
tags: ['backend.controller']
Fab\Messenger\:
resource: '../Classes/*'
Fab\Messenger\Command\LogCommandController:
tags:
- name: 'console.command'
command: 'messenger:cleanUp'
description: 'To clean up the log table.'
schedulable: true
Fab\Messenger\Command\MessageQueueCommandController:
tags:
- name: 'console.command'
command: 'messenger:dequeue'
description: 'To dequeue messages from the queue.'
schedulable: true