This commit is contained in:
Jonathan Treffler 2023-05-17 21:09:36 +02:00
parent 3c8db1d872
commit 27239be8c6
8 changed files with 4028 additions and 1 deletions

17
appinfo/info.xml Normal file
View file

@ -0,0 +1,17 @@
<?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>groupfolder_filesystem_snapshots</id>
<name>Groupfolder Filesystem Snapshots</name>
<summary>App proving a API for other apps, that allows restoring a groupfolder to a previous snapshot in the filesystem</summary>
<description>App proving a PHP API for other apps, that allows restoring a groupfolder to a previous snapshot in the filesystem. Requires a ZFS filesystem.</description>
<version>1.0.0</version>
<licence>agpl</licence>
<author mail="jonathan.treffler@verdigado.com" >Jonathan Treffler</author>
<namespace>GroupfolderFilesystemSnapshots</namespace>
<category>files</category>
<bugs>https://github.com/nextcloud/app-tutorial</bugs>
<dependencies>
<nextcloud min-version="25" max-version="25"/>
</dependencies>
</info>

4
appinfo/routes.php Normal file
View file

@ -0,0 +1,4 @@
<?php
return [
];