From: Nicolas LÅ“uillet Date: Tue, 1 Nov 2016 13:26:57 +0000 (+0100) Subject: Merge pull request #2524 from lologhi/instapaper-cli-import X-Git-Tag: 2.1.3~8 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=db1d962f7b5833ee4054d5f805a7a8b2fc95f177;hp=e52ee565f7df9566d53577cd127088141641619c;p=github%2Fwallabag%2Fwallabag.git Merge pull request #2524 from lologhi/instapaper-cli-import 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');