From e494d51868dc210643dd3cca1e5e0939758e4f03 Mon Sep 17 00:00:00 2001 From: Yassine Guedidi Date: Sun, 14 Aug 2022 22:16:47 +0200 Subject: [PATCH] Register missed commands --- src/Wallabag/CoreBundle/Resources/config/services.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/Wallabag/CoreBundle/Resources/config/services.yml b/src/Wallabag/CoreBundle/Resources/config/services.yml index 5dfdb9a26..e93297f32 100644 --- a/src/Wallabag/CoreBundle/Resources/config/services.yml +++ b/src/Wallabag/CoreBundle/Resources/config/services.yml @@ -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']