aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/DependencyInjection/Configuration.php
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2016-12-12 17:41:03 +0100
committerJeremy Benoist <jeremy.benoist@gmail.com>2016-12-12 17:41:03 +0100
commit24879db1f73c85b121702ba8c6ea36bae285c7c3 (patch)
tree9caa9e59d581ea0be79193635683bac5f1065438 /src/Wallabag/CoreBundle/DependencyInjection/Configuration.php
parent2c1eed8051160499d40ed033c83dd003c81b371e (diff)
downloadwallabag-24879db1f73c85b121702ba8c6ea36bae285c7c3.tar.gz
wallabag-24879db1f73c85b121702ba8c6ea36bae285c7c3.tar.zst
wallabag-24879db1f73c85b121702ba8c6ea36bae285c7c3.zip
Add default value for list_mode
Diffstat (limited to 'src/Wallabag/CoreBundle/DependencyInjection/Configuration.php')
-rw-r--r--src/Wallabag/CoreBundle/DependencyInjection/Configuration.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/DependencyInjection/Configuration.php b/src/Wallabag/CoreBundle/DependencyInjection/Configuration.php
index 3a3da024..006a18c3 100644
--- a/src/Wallabag/CoreBundle/DependencyInjection/Configuration.php
+++ b/src/Wallabag/CoreBundle/DependencyInjection/Configuration.php
@@ -41,6 +41,12 @@ class Configuration implements ConfigurationInterface
41 ->end() 41 ->end()
42 ->scalarNode('fetching_error_message') 42 ->scalarNode('fetching_error_message')
43 ->end() 43 ->end()
44 ->scalarNode('action_mark_as_read')
45 ->defaultValue(1)
46 ->end()
47 ->scalarNode('list_mode')
48 ->defaultValue(1)
49 ->end()
44 ->end() 50 ->end()
45 ; 51 ;
46 52