2024-07-04 05:32:34 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace YesWiki\Meeo;
|
|
|
|
|
|
|
|
use YesWiki\Core\YesWikiAction;
|
2024-07-19 14:52:37 +00:00
|
|
|
use YesWiki\Meeo\Service\NoteManager;
|
2024-07-04 05:32:34 +00:00
|
|
|
|
|
|
|
class NotesAction extends YesWikiAction
|
|
|
|
{
|
|
|
|
public function formatArguments($arg)
|
|
|
|
{
|
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function run()
|
|
|
|
{
|
2024-07-19 14:52:37 +00:00
|
|
|
$noteManager = $this->getService(NoteManager::class);
|
2024-07-21 09:17:17 +00:00
|
|
|
return $noteManager->viewBulletins();
|
2024-07-04 05:32:34 +00:00
|
|
|
}
|
|
|
|
}
|