Changes to make possible implement api endpoint

Update documentation
Start implementing getSystems route
Code to route getSystems
Controller to board import
Change return
Increase coverage

Signed-off-by: Vitor Mattos <vitor@php.rio>
This commit is contained in:
Vitor Mattos
2021-07-16 00:44:45 -03:00
committed by Julius Härtl
parent 39a927de18
commit 4138953208
15 changed files with 511 additions and 354 deletions

View File

@@ -5,6 +5,7 @@ namespace OCA\Deck\Service;
use OCA\Deck\Db\Acl;
use OCA\Deck\Db\Board;
use OCA\Deck\Db\Card;
use OCA\Deck\Db\Label;
use OCA\Deck\Db\Stack;
abstract class ABoardImportService {
@@ -34,9 +35,10 @@ abstract class ABoardImportService {
abstract public function importParticipants(): self;
abstract public function importComments(): self;
abstract public function importComments();
abstract public function importLabels(): self;
/** @return Label[] */
abstract public function importLabels(): array;
abstract public function assignCardsToLabels(): self;