Browse Source
Merge pull request #14905 from nextcloud/bugfix/noid/add-fulltextsearch-min-version
Add min-version/max-version to fulltextsearch provider element
pull/14925/head
Morris Jobke
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
10 additions and
1 deletions
-
resources/app-info.xsd
|
|
|
@ -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> |
|
|
|
|