mirror of
https://github.com/verdigado/organization_folders.git
synced 2024-11-21 20:28:11 +01:00
init app structure (fixes #1)
This commit is contained in:
parent
0580b5efa9
commit
c0e2ec9d2e
3 changed files with 42 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>organization_folders</id>
|
||||
<name>Organization Folders</name>
|
||||
<summary>Managed Groupfolders for your Organisation</summary>
|
||||
<description><![CDATA[]]></description>
|
||||
<version>0.0.1</version>
|
||||
<licence>agpl</licence>
|
||||
<author mail="mail@jonathan-treffler.de">Jonathan Treffler</author>
|
||||
<namespace>OrganizationFolders</namespace>
|
||||
<category>files</category>
|
||||
<bugs>https://git.verdigado.com/verdigado-public/organization_folders/issues</bugs>
|
||||
<dependencies>
|
||||
<php min-version="8.2" />
|
||||
<database>pgsql</database>
|
||||
<database>sqlite</database>
|
||||
<database>mysql</database>
|
||||
<nextcloud min-version="29" max-version="29"/>
|
||||
</dependencies>
|
||||
</info>
|
8
appinfo/routes.php
Normal file
8
appinfo/routes.php
Normal file
|
@ -0,0 +1,8 @@
|
|||
<?php
|
||||
|
||||
return [
|
||||
'resources' => [
|
||||
],
|
||||
'routes' => [
|
||||
]
|
||||
];
|
13
lib/AppInfo/Application.php
Normal file
13
lib/AppInfo/Application.php
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?php
|
||||
|
||||
namespace OCA\OrganizationFolders\AppInfo;
|
||||
|
||||
use OCP\AppFramework\App;
|
||||
|
||||
class Application extends App {
|
||||
public const APP_ID = 'organization_folders';
|
||||
|
||||
public function __construct() {
|
||||
parent::__construct(self::APP_ID);
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue