Redirect to hostgroups after login

Hello,

how can I redirect my defaultpage, after a sucessful login to https://server/icingaweb2/monitoring/list/hostgroups?

Sincerely
FallingSky

I have create a new default dashboard for that which is configured via a small “module hack”.
You can read about it here:

@FallingSky, have a look at:

Do I configure this in the run.php?

Because when I configure this I get an error with “site not found”

My config:
<?php

$route = new Zend_Controller_Router_Route(‘dashboard’, [
‘module’ => ‘enforceddashboard’,
‘controller’ => ‘monitoring/list/hostgroups’,
‘action’ => ‘index’,
]);

$this->addRoute(‘monitoring/list/hostgroups’, $route);