WikiContent using easy-markdown-editor

This commit is contained in:
2022-04-27 19:08:42 +00:00
parent 72489186ae
commit 5dc38e2de9
11 changed files with 117 additions and 128 deletions

View File

@ -43,10 +43,13 @@ class WikiPageService {
}
public function find(int $wikiId, int $id, string $userId) {
echo "\nwikiId: $wikiId";
echo "\nid: $id";
echo "\nuserId: $userId";
die();
try {
$wiki = $this->mapper->find($wikiId, $userId);
$wikiPageContent = $this->wikiHelper->setFolderId($wiki->getFileId())->getWikiPageContent($id);
} catch(Exception $e) {
$this->handleException($e);
}
return ['content'=>$wikiPageContent];
}
public function create(int $wikiId, int $parentFolderId, string $title, ?string $content, string $userId):array {