aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ImportBundle/Resources/config/rabbit.yml
blob: f09dda0d220ee6755f0f951e0a2326868845a015 (plain) (blame)
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
# RabbitMQ stuff
services:
    wallabag_import.consumer.ampq.pocket:
        class: Wallabag\ImportBundle\Consumer\AMPQEntryConsumer
        arguments:
            - "@doctrine.orm.entity_manager"
            - "@wallabag_user.user_repository"
            - "@wallabag_import.pocket.import"
            - "@logger"
    wallabag_import.consumer.ampq.readability:
        class: Wallabag\ImportBundle\Consumer\AMPQEntryConsumer
        arguments:
            - "@doctrine.orm.entity_manager"
            - "@wallabag_user.user_repository"
            - "@wallabag_import.readability.import"
            - "@logger"
    wallabag_import.consumer.ampq.wallabag_v1:
        class: Wallabag\ImportBundle\Consumer\AMPQEntryConsumer
        arguments:
            - "@doctrine.orm.entity_manager"
            - "@wallabag_user.user_repository"
            - "@wallabag_import.wallabag_v1.import"
            - "@logger"
    wallabag_import.consumer.ampq.wallabag_v2:
        class: Wallabag\ImportBundle\Consumer\AMPQEntryConsumer
        arguments:
            - "@doctrine.orm.entity_manager"
            - "@wallabag_user.user_repository"
            - "@wallabag_import.wallabag_v2.import"
            - "@logger"