[COMPONENT][Conversation] Remove Feed list entry

Notifications feed is enough
This commit is contained in:
2021-12-23 13:16:04 +00:00
parent e743a17883
commit 17b7ef13a0
3 changed files with 4 additions and 38 deletions

View File

@@ -26,8 +26,9 @@ declare(strict_types = 1);
namespace Component\Conversation\Controller;
use App\Core\Controller\FeedController;
use App\Core\DB\DB;
use function App\Core\I18n\_m;
use Component\Feed\Util\FeedController;
use Symfony\Component\HttpFoundation\Request;
class Conversation extends FeedController
@@ -50,7 +51,7 @@ class Conversation extends FeedController
'_template' => 'feed/feed.html.twig',
'notes' => $notes,
'should_format' => false,
'page_title' => 'Conversation',
'page_title' => _m('Conversation'),
];
}
}