aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/DependencyInjection/Configuration.php
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2017-05-01 09:21:59 +0200
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2017-05-01 09:26:12 +0200
commitefd351c98fa0caa4c8df9c7ff6965c537524f12a (patch)
tree78a268e63d8983b88c95a2518df62b9b06889827 /src/Wallabag/CoreBundle/DependencyInjection/Configuration.php
parent7fa844a34983f9929348e70ddd408cf6ba5811b6 (diff)
downloadwallabag-efd351c98fa0caa4c8df9c7ff6965c537524f12a.tar.gz
wallabag-efd351c98fa0caa4c8df9c7ff6965c537524f12a.tar.zst
wallabag-efd351c98fa0caa4c8df9c7ff6965c537524f12a.zip
Added limit
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