initial implementation of demo organization provider
This commit is contained in:
parent
9d2d0a7988
commit
429ca86ce9
5 changed files with 180 additions and 0 deletions
21
appinfo/info.xml
Normal file
21
appinfo/info.xml
Normal file
|
@ -0,0 +1,21 @@
|
|||
<?xml version="1.0"?>
|
||||
<info xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:noNamespaceSchemaLocation="https://apps.nextcloud.com/schema/apps/info.xsd">
|
||||
<id>demo_organization_provider</id>
|
||||
<name>Demo Organization Provider</name>
|
||||
<summary></summary>
|
||||
<description><![CDATA[]]></description>
|
||||
<version>1.0.0</version>
|
||||
<licence>agpl</licence>
|
||||
<author mail="mail@jonathan-treffler.de">Jonathan Treffler</author>
|
||||
<namespace>DemoOrganizationProvider</namespace>
|
||||
<category>files</category>
|
||||
<bugs>https://git.verdigado.com/verdigado-public/demo_organization_provider/issues</bugs>
|
||||
<dependencies>
|
||||
<php min-version="8.2" />
|
||||
<database>pgsql</database>
|
||||
<database>sqlite</database>
|
||||
<database>mysql</database>
|
||||
<nextcloud min-version="30" max-version="30"/>
|
||||
</dependencies>
|
||||
</info>
|
8
appinfo/routes.php
Normal file
8
appinfo/routes.php
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'resources' => [
|
||||
],
|
||||
'routes' => [
|
||||
]
|
||||
];
|
Loading…
Add table
Add a link
Reference in a new issue