File tree 1 file changed +42
-3
lines changed
1 file changed +42
-3
lines changed Original file line number Diff line number Diff line change @@ -21,10 +21,10 @@ Configuration
21
21
* `test `_
22
22
* `trusted_proxies `_
23
23
* `form `_
24
- * enabled
24
+ * :ref: ` enabled < form-enabled >`
25
25
* `csrf_protection `_
26
- * enabled
27
- * field_name
26
+ * :ref: ` enabled < csrf-protection-enabled >`
27
+ * ` field_name `_
28
28
* `session `_
29
29
* `name `_
30
30
* `cookie_lifetime `_
@@ -49,6 +49,7 @@ Configuration
49
49
* :ref: `enabled <translator.enabled >`
50
50
* `fallback `_
51
51
* `validation `_
52
+ * :ref: `enabled <validation-enabled >`
52
53
* `cache `_
53
54
* `enable_annotations `_
54
55
* `translation_domain `_
@@ -196,9 +197,37 @@ see :doc:`/cookbook/request/load_balancer_reverse_proxy`.
196
197
form
197
198
~~~~
198
199
200
+ .. _form-enabled :
201
+
202
+ enabled
203
+ .......
204
+
205
+ **type **: ``boolean `` **default **: ``false ``
206
+
207
+ Whether or not to enable support for the Form component.
208
+
199
209
csrf_protection
200
210
~~~~~~~~~~~~~~~
201
211
212
+ .. _csrf-protection-enabled :
213
+
214
+ enabled
215
+ .......
216
+
217
+ **type **: ``boolean `` **default **: ``true `` if form support is enabled, ``false ``
218
+ otherwise
219
+
220
+ This option can be used to disable CSRF protection of forms. You need to
221
+ disable CSRF protection to be able to disable session. For example, this
222
+ is useful when you only use forms in an API-only website.
223
+
224
+ field_name
225
+ ..........
226
+
227
+ **type **: ``string `` **default **: ``"_token" ``
228
+
229
+ The name of the hidden field used to render the :ref: `CSRF token <forms-csrf >`.
230
+
202
231
session
203
232
~~~~~~~
204
233
@@ -524,6 +553,16 @@ For more details, see :doc:`/book/translation`.
524
553
validation
525
554
~~~~~~~~~~
526
555
556
+ .. _validation-enabled :
557
+
558
+ enabled
559
+ .......
560
+
561
+ **type **: ``boolean `` **default **: ``true `` if :ref: `form support is enabled <form-enabled >`,
562
+ ``false `` otherwise
563
+
564
+ Whether or not to enable validation support.
565
+
527
566
cache
528
567
.....
529
568
You can’t perform that action at this time.
0 commit comments