cover images

Signed-off-by: Jakob Röhrl <jakob.roehrl@web.de>
This commit is contained in:
Jakob Röhrl
2021-03-05 14:47:43 +01:00
parent a857c63b35
commit d4898552ad
7 changed files with 65 additions and 5 deletions

View File

@@ -73,10 +73,11 @@ class BoardController extends ApiController {
* @param $title
* @param $color
* @param $archived
* @param $coverImages
* @return \OCP\AppFramework\Db\Entity
*/
public function update($id, $title, $color, $archived) {
return $this->boardService->update($id, $title, $color, $archived);
public function update($id, $title, $color, $archived, $coverImages) {
return $this->boardService->update($id, $title, $color, $archived, $coverImages);
}
/**