diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2017-05-18 14:36:30 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2017-05-18 20:49:07 +0200 |
commit | 9d91ebf8e022821db8af15cb4bc0463df7146491 (patch) | |
tree | 4e2632cc61e86855b5a3be09165ca19498172734 /apps | |
parent | 1eb7f4956b1cdc99d0345600047cd6137051790f (diff) | |
download | nextcloud-server-9d91ebf8e022821db8af15cb4bc0463df7146491.tar.gz nextcloud-server-9d91ebf8e022821db8af15cb4bc0463df7146491.zip |
Add XSD definitions
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/oauth2/appinfo/database.xml | 2 | ||||
-rw-r--r-- | apps/oauth2/appinfo/info.xml | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/apps/oauth2/appinfo/database.xml b/apps/oauth2/appinfo/database.xml index 48de162299c..de3df4091a6 100644 --- a/apps/oauth2/appinfo/database.xml +++ b/apps/oauth2/appinfo/database.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="ISO-8859-1" ?> -<database> +<database xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/database.xsd"> <name>*dbname*</name> <create>true</create> <overwrite>false</overwrite> diff --git a/apps/oauth2/appinfo/info.xml b/apps/oauth2/appinfo/info.xml index 8b24d4581fb..8992b87daaa 100644 --- a/apps/oauth2/appinfo/info.xml +++ b/apps/oauth2/appinfo/info.xml @@ -1,9 +1,9 @@ <?xml version="1.0"?> -<info> +<info xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd"> <id>oauth2</id> <name>OAuth 2.0</name> <description>The OAuth2 app allows administrators to configure the built-in authentication workflow to also allow OAuth2 compatible authentication from other web applications.</description> - <licence>AGPL</licence> + <licence>agpl</licence> <author>Lukas Reschke</author> <namespace>OAuth2</namespace> <version>1.0.4</version> |