forked from wallabag/wallabag
Move Import importers to Core
This commit is contained in:
@ -19,7 +19,7 @@ services:
|
||||
wallabag_import.consumer.redis.readability:
|
||||
class: Wallabag\CoreBundle\Consumer\RedisEntryConsumer
|
||||
arguments:
|
||||
$import: '@Wallabag\ImportBundle\Import\ReadabilityImport'
|
||||
$import: '@Wallabag\CoreBundle\Import\ReadabilityImport'
|
||||
|
||||
# instapaper
|
||||
wallabag_import.queue.redis.instapaper:
|
||||
@ -35,7 +35,7 @@ services:
|
||||
wallabag_import.consumer.redis.instapaper:
|
||||
class: Wallabag\CoreBundle\Consumer\RedisEntryConsumer
|
||||
arguments:
|
||||
$import: '@Wallabag\ImportBundle\Import\InstapaperImport'
|
||||
$import: '@Wallabag\CoreBundle\Import\InstapaperImport'
|
||||
|
||||
# pinboard
|
||||
wallabag_import.queue.redis.pinboard:
|
||||
@ -51,7 +51,7 @@ services:
|
||||
wallabag_import.consumer.redis.pinboard:
|
||||
class: Wallabag\CoreBundle\Consumer\RedisEntryConsumer
|
||||
arguments:
|
||||
$import: '@Wallabag\ImportBundle\Import\PinboardImport'
|
||||
$import: '@Wallabag\CoreBundle\Import\PinboardImport'
|
||||
|
||||
# delicious
|
||||
wallabag_import.queue.redis.delicious:
|
||||
@ -67,7 +67,7 @@ services:
|
||||
wallabag_import.consumer.redis.delicious:
|
||||
class: Wallabag\CoreBundle\Consumer\RedisEntryConsumer
|
||||
arguments:
|
||||
$import: '@Wallabag\ImportBundle\Import\DeliciousImport'
|
||||
$import: '@Wallabag\CoreBundle\Import\DeliciousImport'
|
||||
|
||||
# pocket
|
||||
wallabag_import.queue.redis.pocket:
|
||||
@ -83,7 +83,7 @@ services:
|
||||
wallabag_import.consumer.redis.pocket:
|
||||
class: Wallabag\CoreBundle\Consumer\RedisEntryConsumer
|
||||
arguments:
|
||||
$import: '@Wallabag\ImportBundle\Import\PocketImport'
|
||||
$import: '@Wallabag\CoreBundle\Import\PocketImport'
|
||||
|
||||
# wallabag v1
|
||||
wallabag_import.queue.redis.wallabag_v1:
|
||||
@ -99,7 +99,7 @@ services:
|
||||
wallabag_import.consumer.redis.wallabag_v1:
|
||||
class: Wallabag\CoreBundle\Consumer\RedisEntryConsumer
|
||||
arguments:
|
||||
$import: '@Wallabag\ImportBundle\Import\WallabagV1Import'
|
||||
$import: '@Wallabag\CoreBundle\Import\WallabagV1Import'
|
||||
|
||||
# wallabag v2
|
||||
wallabag_import.queue.redis.wallabag_v2:
|
||||
@ -115,7 +115,7 @@ services:
|
||||
wallabag_import.consumer.redis.wallabag_v2:
|
||||
class: Wallabag\CoreBundle\Consumer\RedisEntryConsumer
|
||||
arguments:
|
||||
$import: '@Wallabag\ImportBundle\Import\WallabagV2Import'
|
||||
$import: '@Wallabag\CoreBundle\Import\WallabagV2Import'
|
||||
|
||||
# elcurator
|
||||
wallabag_import.queue.redis.elcurator:
|
||||
@ -131,7 +131,7 @@ services:
|
||||
wallabag_import.consumer.redis.elcurator:
|
||||
class: Wallabag\CoreBundle\Consumer\RedisEntryConsumer
|
||||
arguments:
|
||||
$import: '@Wallabag\ImportBundle\Import\ElcuratorImport'
|
||||
$import: '@Wallabag\CoreBundle\Import\ElcuratorImport'
|
||||
|
||||
# firefox
|
||||
wallabag_import.queue.redis.firefox:
|
||||
@ -147,7 +147,7 @@ services:
|
||||
wallabag_import.consumer.redis.firefox:
|
||||
class: Wallabag\CoreBundle\Consumer\RedisEntryConsumer
|
||||
arguments:
|
||||
$import: '@Wallabag\ImportBundle\Import\FirefoxImport'
|
||||
$import: '@Wallabag\CoreBundle\Import\FirefoxImport'
|
||||
|
||||
# chrome
|
||||
wallabag_import.queue.redis.chrome:
|
||||
@ -163,7 +163,7 @@ services:
|
||||
wallabag_import.consumer.redis.chrome:
|
||||
class: Wallabag\CoreBundle\Consumer\RedisEntryConsumer
|
||||
arguments:
|
||||
$import: '@Wallabag\ImportBundle\Import\ChromeImport'
|
||||
$import: '@Wallabag\CoreBundle\Import\ChromeImport'
|
||||
|
||||
# shaarli
|
||||
wallabag_import.queue.redis.shaarli:
|
||||
@ -179,7 +179,7 @@ services:
|
||||
wallabag_import.consumer.redis.shaarli:
|
||||
class: Wallabag\CoreBundle\Consumer\RedisEntryConsumer
|
||||
arguments:
|
||||
$import: '@Wallabag\ImportBundle\Import\ShaarliImport'
|
||||
$import: '@Wallabag\CoreBundle\Import\ShaarliImport'
|
||||
|
||||
# pocket html
|
||||
wallabag_import.queue.redis.pocket_html:
|
||||
@ -195,4 +195,4 @@ services:
|
||||
wallabag_import.consumer.redis.pocket_html:
|
||||
class: Wallabag\CoreBundle\Consumer\RedisEntryConsumer
|
||||
arguments:
|
||||
$import: '@Wallabag\ImportBundle\Import\PocketHtmlImport'
|
||||
$import: '@Wallabag\CoreBundle\Import\PocketHtmlImport'
|
||||
|
||||
Reference in New Issue
Block a user