committing WIP (improving error validation across the api's)

Signed-off-by: Ryan Fletcher <ryan.fletcher@codepassion.ca>
This commit is contained in:
Ryan Fletcher
2018-08-15 21:15:17 +02:00
committed by Julius Härtl
parent a388d199dc
commit 2668f6b80c
4 changed files with 77 additions and 39 deletions
+4
View File
@@ -89,6 +89,10 @@ class StackService {
}
}
public function find($stackId) {
throw new \Exception('Not yet implemented');
}
public function findAll($boardId) {
$this->permissionService->checkPermission(null, $boardId, Acl::PERMISSION_READ);
$stacks = $this->stackMapper->findAll($boardId);