From: Laurent Date: Tue, 1 Nov 2016 10:33:32 +0000 (+0800) Subject: Add Instapaper to CLI import X-Git-Tag: 2.1.3~8^2 X-Git-Url: https://git.immae.eu/?p=github%2Fwallabag%2Fwallabag.git;a=commitdiff_plain;h=995d909d0f10c9cbdafb92fc10445c959b476740 Add Instapaper to CLI import --- diff --git a/src/Wallabag/ImportBundle/Command/ImportCommand.php b/src/Wallabag/ImportBundle/Command/ImportCommand.php index 1df38295..d1325338 100644 --- a/src/Wallabag/ImportBundle/Command/ImportCommand.php +++ b/src/Wallabag/ImportBundle/Command/ImportCommand.php @@ -50,6 +50,9 @@ class ImportCommand extends ContainerAwareCommand case 'chrome': $wallabag = $this->getContainer()->get('wallabag_import.chrome.import'); break; + case 'instapaper': + $wallabag = $this->getContainer()->get('wallabag_import.instapaper.import'); + break; case 'v1': default: $wallabag = $this->getContainer()->get('wallabag_import.wallabag_v1.import');