aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/DataFixtures/ORM
diff options
context:
space:
mode:
authorJeremy Benoist <j0k3r@users.noreply.github.com>2016-11-22 19:12:53 +0100
committerGitHub <noreply@github.com>2016-11-22 19:12:53 +0100
commit176e0ea3caee9f4eccc1ddda5f84b14da2cca034 (patch)
tree543ff69ee6b56c6383f3f9758221fc64154dee5c /src/Wallabag/CoreBundle/DataFixtures/ORM
parent1d5dd2c2410d7866752bca5d65886afc6a7650ef (diff)
parentd51093a7d964ca720793d0cfcf4af601f2de448a (diff)
downloadwallabag-176e0ea3caee9f4eccc1ddda5f84b14da2cca034.tar.gz
wallabag-176e0ea3caee9f4eccc1ddda5f84b14da2cca034.tar.zst
wallabag-176e0ea3caee9f4eccc1ddda5f84b14da2cca034.zip
Merge pull request #2317 from wallabag/restricted-access
Added authentication for restricted access articles
Diffstat (limited to 'src/Wallabag/CoreBundle/DataFixtures/ORM')
-rw-r--r--src/Wallabag/CoreBundle/DataFixtures/ORM/LoadSettingData.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/DataFixtures/ORM/LoadSettingData.php b/src/Wallabag/CoreBundle/DataFixtures/ORM/LoadSettingData.php
index 1f74891a..a723656e 100644
--- a/src/Wallabag/CoreBundle/DataFixtures/ORM/LoadSettingData.php
+++ b/src/Wallabag/CoreBundle/DataFixtures/ORM/LoadSettingData.php
@@ -155,6 +155,11 @@ class LoadSettingData extends AbstractFixture implements OrderedFixtureInterface
155 'value' => '0', 155 'value' => '0',
156 'section' => 'misc', 156 'section' => 'misc',
157 ], 157 ],
158 [
159 'name' => 'restricted_access',
160 'value' => '0',
161 'section' => 'entry',
162 ],
158 ]; 163 ];
159 164
160 foreach ($settings as $setting) { 165 foreach ($settings as $setting) {