Wiki navigation bar

This commit is contained in:
2022-03-27 22:00:29 +00:00
parent 9c6114cf86
commit 4807b7d4ae
13 changed files with 189 additions and 48 deletions

View File

@ -51,12 +51,12 @@
/**
* @NoAdminRequired
*
* @param string $folderPath
* @param string $title
* @param string $fileId
*/
public function create(string $title, int $fileId) {
return $this->handleReadOnly(function () use ($title, $fileId) {
return $this->service->create($title, $fileId, $this->userId);
*/
public function create(string $folderPath, string $title) {
return $this->handleReadOnly(function () use ($folderPath, $title) {
return $this->service->create($folderPath, $title, $this->userId);
});
}