mirror of
https://github.com/rr-/szurubooru.git
synced 2025-07-17 08:26:24 +00:00
14 lines
228 B
PHP
14 lines
228 B
PHP
<?php
|
|
class CommentController
|
|
{
|
|
/**
|
|
* @route /comments
|
|
*/
|
|
public function listAction()
|
|
{
|
|
$this->context->activeSection = 'comments';
|
|
$this->context->subTitle = 'comments';
|
|
throw new Exception('Not implemented');
|
|
}
|
|
}
|