Merge pull request #5928 from yguedidi/register-missed-commands

Register missed commands
This commit is contained in:
Kevin Decherf 2022-08-15 12:58:30 +02:00 committed by GitHub
commit 207dfb7d32
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -241,6 +241,10 @@ services:
- "%wallabag_core.site_credentials.encryption_key_path%"
- "@logger"
wallabag_core.command.clean_downloaded_images:
class: Wallabag\CoreBundle\Command\CleanDownloadedImagesCommand
tags: ['console.command']
wallabag_core.command.clean_duplicates:
class: Wallabag\CoreBundle\Command\CleanDuplicatesCommand
tags: ['console.command']
@ -249,6 +253,10 @@ services:
class: Wallabag\CoreBundle\Command\ExportCommand
tags: ['console.command']
wallabag_core.command.generate_url_hashes:
class: Wallabag\CoreBundle\Command\GenerateUrlHashesCommand
tags: ['console.command']
wallabag_core.command.install:
class: Wallabag\CoreBundle\Command\InstallCommand
tags: ['console.command']