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:
committed by
Julius Härtl
parent
39a927de18
commit
4138953208
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user