aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/DependencyInjection/Configuration.php
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2017-05-05 13:56:34 +0200
committerGitHub <noreply@github.com>2017-05-05 13:56:34 +0200
commit69803049688179e1b03ef424dec91f1b9a4f9e91 (patch)
tree3171881d9aaba386505ff9b3e3a26c59dcee8f2b /src/Wallabag/CoreBundle/DependencyInjection/Configuration.php
parentcebed9c01f20d47cb60259f0c002ea57a80da4d0 (diff)
parent72db15ca5d7950a604f359056fc6a627f25e4ee4 (diff)
downloadwallabag-69803049688179e1b03ef424dec91f1b9a4f9e91.tar.gz
wallabag-69803049688179e1b03ef424dec91f1b9a4f9e91.tar.zst
wallabag-69803049688179e1b03ef424dec91f1b9a4f9e91.zip
Merge pull request #3053 from wallabag/api-bulk-add
Added API endpoint to handle a list of URL
Diffstat (limited to 'src/Wallabag/CoreBundle/DependencyInjection/Configuration.php')
-rw-r--r--src/Wallabag/CoreBundle/DependencyInjection/Configuration.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/DependencyInjection/Configuration.php b/src/Wallabag/CoreBundle/DependencyInjection/Configuration.php
index 006a18c3..75b37729 100644
--- a/src/Wallabag/CoreBundle/DependencyInjection/Configuration.php
+++ b/src/Wallabag/CoreBundle/DependencyInjection/Configuration.php
@@ -47,6 +47,9 @@ class Configuration implements ConfigurationInterface
47 ->scalarNode('list_mode') 47 ->scalarNode('list_mode')
48 ->defaultValue(1) 48 ->defaultValue(1)
49 ->end() 49 ->end()
50 ->scalarNode('api_limit_mass_actions')
51 ->defaultValue(10)
52 ->end()
50 ->end() 53 ->end()
51 ; 54 ;
52 55