]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - src/Wallabag/ImportBundle/DependencyInjection/Configuration.php
Update after previous merge
[github/wallabag/wallabag.git] / src / Wallabag / ImportBundle / DependencyInjection / Configuration.php
index bacaff31c9d05e5b98a30e17caf061d21a09dfe4..2ef3546387e1ae1e0d852d938179fdf06f10ff39 100644 (file)
@@ -12,6 +12,14 @@ class Configuration implements ConfigurationInterface
         $treeBuilder = new TreeBuilder();
         $rootNode = $treeBuilder->root('wallabag_import');
 
+        $rootNode
+            ->children()
+                ->arrayNode('allow_mimetypes')
+                    ->prototype('scalar')->end()
+                ->end()
+            ->end()
+        ;
+
         return $treeBuilder;
     }
 }