aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Form
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2016-09-16 22:22:25 +0200
committerJeremy Benoist <jeremy.benoist@gmail.com>2016-09-16 22:22:25 +0200
commitebe0787e093f4f2934430033015d6ebad1c64dca (patch)
tree0e28c1da4fdb1ee48ae021a4e63d9a8ee1ec302d /src/Wallabag/CoreBundle/Form
parent4fc998245c56ad95c1e753ab52b0c702d4a8a59d (diff)
downloadwallabag-ebe0787e093f4f2934430033015d6ebad1c64dca.tar.gz
wallabag-ebe0787e093f4f2934430033015d6ebad1c64dca.tar.zst
wallabag-ebe0787e093f4f2934430033015d6ebad1c64dca.zip
Moved Pocket token to user config
Diffstat (limited to 'src/Wallabag/CoreBundle/Form')
-rw-r--r--src/Wallabag/CoreBundle/Form/Type/ConfigType.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Form/Type/ConfigType.php b/src/Wallabag/CoreBundle/Form/Type/ConfigType.php
index 7d25cc80..0bac2874 100644
--- a/src/Wallabag/CoreBundle/Form/Type/ConfigType.php
+++ b/src/Wallabag/CoreBundle/Form/Type/ConfigType.php
@@ -52,6 +52,9 @@ class ConfigType extends AbstractType
52 'choices' => array_flip($this->languages), 52 'choices' => array_flip($this->languages),
53 'label' => 'config.form_settings.language_label', 53 'label' => 'config.form_settings.language_label',
54 ]) 54 ])
55 ->add('pocket_consumer_key', null, [
56 'label' => 'config.form_settings.pocket_consumer_key_label',
57 ])
55 ->add('save', SubmitType::class, [ 58 ->add('save', SubmitType::class, [
56 'label' => 'config.form.save', 59 'label' => 'config.form.save',
57 ]) 60 ])