labelService->create($title, $color, $boardId); } /** * @NoAdminRequired * @param $id * @param $title * @param $color * @return \OCP\AppFramework\Db\Entity */ public function update($id, $title, $color) { return $this->labelService->update($id, $title, $color); } /** * @NoAdminRequired * @param $labelId * @return \OCP\AppFramework\Db\Entity */ public function delete($labelId) { return $this->labelService->delete($labelId); } }