[Directory] Changed the route so the plugin Directory doesn't take over - query is not working for some reason

This commit is contained in:
Angelo D. Moura
2020-11-30 02:25:22 +00:00
committed by Hugo Sales
parent eb1ef4dd0f
commit 098fdb3361
4 changed files with 89 additions and 5 deletions

View File

@@ -152,8 +152,8 @@ END;
{
return [
'_template' => 'network/groups.html.twig',
'groups' => DB::dql('select group from App\Entity\Groups group ' .
'order by group.created DESC'),
'groups' => DB::dql('select g from App\Entity\Group g ' .
'order by g.nickname ASC'),
];
}
}