mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 08:44:07 -04:00
Merge pull request #14905 from nextcloud/bugfix/noid/add-fulltextsearch-min-version
Add min-version/max-version to fulltextsearch provider element
This commit is contained in:
commit
f345785865
1 changed files with 10 additions and 1 deletions
|
|
@ -659,11 +659,20 @@
|
|||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
|
||||
<xs:complexType name="fulltextsearch-provider">
|
||||
<xs:simpleContent>
|
||||
<xs:extension base="php-class">
|
||||
<xs:attribute name="min-version" type="version" use="optional"/>
|
||||
<xs:attribute name="max-version" type="version" use="optional"/>
|
||||
</xs:extension>
|
||||
</xs:simpleContent>
|
||||
</xs:complexType>
|
||||
|
||||
<xs:complexType name="fulltextsearch">
|
||||
<xs:sequence>
|
||||
<xs:element name="platform" type="php-class" minOccurs="0"
|
||||
maxOccurs="unbounded"/>
|
||||
<xs:element name="provider" type="php-class" minOccurs="0"
|
||||
<xs:element name="provider" type="fulltextsearch-provider" minOccurs="0"
|
||||
maxOccurs="unbounded"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
|
|
|
|||
Loading…
Reference in a new issue