ynh_extension_meeo/actions/NotesAction.php

19 lines
271 B
PHP
Raw Normal View History

2024-07-04 05:32:34 +00:00
<?php
namespace YesWiki\Meeo;
use YesWiki\Core\YesWikiAction;
class NotesAction extends YesWikiAction
{
public function formatArguments($arg)
{
return [];
}
public function run()
{
return $this->render('@meeo/notes.twig');
}
}