mirror of https://github.com/wallabag/wallabag.git
Make database dependent commands lazy
(cherry picked from commit 9927a06cab
)
This commit is contained in:
parent
a1154927c3
commit
16f31549fd
|
@ -282,9 +282,23 @@ services:
|
||||||
arguments:
|
arguments:
|
||||||
$baseFolder: "%kernel.project_dir%/web/assets/images"
|
$baseFolder: "%kernel.project_dir%/web/assets/images"
|
||||||
|
|
||||||
|
Wallabag\CoreBundle\Command\CleanDownloadedImagesCommand:
|
||||||
|
tags:
|
||||||
|
- { name: console.command, command: 'wallabag:clean-downloaded-images' }
|
||||||
|
|
||||||
|
Wallabag\CoreBundle\Command\CleanDuplicatesCommand:
|
||||||
|
tags:
|
||||||
|
- { name: console.command, command: 'wallabag:clean-duplicates' }
|
||||||
|
|
||||||
Wallabag\CoreBundle\Command\ExportCommand:
|
Wallabag\CoreBundle\Command\ExportCommand:
|
||||||
arguments:
|
arguments:
|
||||||
$projectDir: '%kernel.project_dir%'
|
$projectDir: '%kernel.project_dir%'
|
||||||
|
tags:
|
||||||
|
- { name: console.command, command: 'wallabag:export' }
|
||||||
|
|
||||||
|
Wallabag\CoreBundle\Command\GenerateUrlHashesCommand:
|
||||||
|
tags:
|
||||||
|
- { name: console.command, command: 'wallabag:generate-hashed-urls' }
|
||||||
|
|
||||||
Wallabag\CoreBundle\Command\InstallCommand:
|
Wallabag\CoreBundle\Command\InstallCommand:
|
||||||
arguments:
|
arguments:
|
||||||
|
@ -293,6 +307,26 @@ services:
|
||||||
$defaultSettings: '%wallabag_core.default_internal_settings%'
|
$defaultSettings: '%wallabag_core.default_internal_settings%'
|
||||||
$defaultIgnoreOriginInstanceRules: '%wallabag_core.default_ignore_origin_instance_rules%'
|
$defaultIgnoreOriginInstanceRules: '%wallabag_core.default_ignore_origin_instance_rules%'
|
||||||
|
|
||||||
|
Wallabag\CoreBundle\Command\ListUserCommand:
|
||||||
|
tags:
|
||||||
|
- { name: console.command, command: 'wallabag:user:list' }
|
||||||
|
|
||||||
|
Wallabag\CoreBundle\Command\ReloadEntryCommand:
|
||||||
|
tags:
|
||||||
|
- { name: console.command, command: 'wallabag:entry:reload' }
|
||||||
|
|
||||||
|
Wallabag\CoreBundle\Command\ShowUserCommand:
|
||||||
|
tags:
|
||||||
|
- { name: console.command, command: 'wallabag:user:show' }
|
||||||
|
|
||||||
|
Wallabag\CoreBundle\Command\TagAllCommand:
|
||||||
|
tags:
|
||||||
|
- { name: console.command, command: 'wallabag:tag:all' }
|
||||||
|
|
||||||
|
Wallabag\ImportBundle\Command\ImportCommand:
|
||||||
|
tags:
|
||||||
|
- { name: console.command, command: 'wallabag:import' }
|
||||||
|
|
||||||
wallabag_core.entry.download_images.client:
|
wallabag_core.entry.download_images.client:
|
||||||
alias: 'httplug.client.wallabag_core.entry.download_images'
|
alias: 'httplug.client.wallabag_core.entry.download_images'
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue