File tree Expand file tree Collapse file tree 2 files changed +16
-0
lines changed
Tests/DependencyInjection/Fixtures/xml Expand file tree Collapse file tree 2 files changed +16
-0
lines changed Original file line number Diff line number Diff line change 310
310
311
311
<xsd : complexType name =" workflow" >
312
312
<xsd : sequence >
313
+ <xsd : element name =" audit-trail" type =" audit_trail" minOccurs =" 0" maxOccurs =" 1" />
313
314
<xsd : element name =" initial-marking" type =" xsd:string" minOccurs =" 0" maxOccurs =" unbounded" />
314
315
<xsd : element name =" marking-store" type =" marking_store" minOccurs =" 0" maxOccurs =" 1" />
315
316
<xsd : element name =" support" type =" xsd:string" minOccurs =" 0" maxOccurs =" unbounded" />
339
340
<xsd : attribute name =" logLevel" type =" xsd:string" />
340
341
</xsd : complexType >
341
342
343
+ <xsd : complexType name =" audit_trail" >
344
+ <xsd : attribute name =" enabled" type =" xsd:boolean" />
345
+ </xsd : complexType >
346
+
347
+ <xsd : simpleType name =" audit_trail_enabled" >
348
+ <xsd : restriction base =" xsd:string" >
349
+ <xsd : enumeration value =" true" />
350
+ <xsd : enumeration value =" false" />
351
+ <xsd : enumeration value =" 1" />
352
+ <xsd : enumeration value =" 0" />
353
+ </xsd : restriction >
354
+ </xsd : simpleType >
355
+
342
356
<xsd : complexType name =" marking_store" >
343
357
<xsd : sequence >
344
358
<xsd : element name =" argument" type =" xsd:string" minOccurs =" 0" maxOccurs =" unbounded" />
Original file line number Diff line number Diff line change 8
8
9
9
<framework : config >
10
10
<framework : workflow name =" article" type =" workflow" >
11
+ <framework : audit-trail enabled =" true" />
11
12
<framework : initial-marking >draft</framework : initial-marking >
12
13
<framework : marking-store type =" method" property =" state" />
13
14
<framework : support >Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTest</framework : support >
42
43
</framework : workflow >
43
44
44
45
<framework : workflow name =" pull_request" >
46
+ <framework : audit-trail enabled =" false" />
45
47
<framework : initial-marking >start</framework : initial-marking >
46
48
<framework : support >Symfony\Bundle\FrameworkBundle\Tests\DependencyInjection\FrameworkExtensionTest</framework : support >
47
49
<framework : place name =" start" >
You can’t perform that action at this time.
0 commit comments