First commit

This commit is contained in:
Patrick Niebeling
2025-03-12 10:33:41 +01:00
commit 05f50ea068
5 changed files with 168 additions and 0 deletions

19
appinfo/app.php Normal file
View File

@ -0,0 +1,19 @@
<?php
namespace OCA\DeckFlow\AppInfo;
use OCP\AppFramework\App;
use OCP\BackgroundJob\IJobList;
use OCA\DeckFlow\BackgroundJobs\CheckOverdueCards;
class Application extends App {
public function __construct(array $urlParams = []) {
parent::__construct('deckflow', $urlParams);
}
public function register() {
$container = $this->getContainer();
$jobList = $container->query(IJobList::class);
$jobList->add(CheckOverdueCards::class);
}
}

9
appinfo/info.xml Normal file
View File

@ -0,0 +1,9 @@
<?xml version="1.0"?>
<info>
<id>deckflow</id>
<name>Deck Flow</name>
<description>Automatisches Verschieben von überfälligen Karten in Nextcloud Deck</description>
<version>1.0.0</version>
<namespace>OCA\DeckFlow</namespace>
<category>automation</category>
</info>