Silverstripe Version:4*
I hope I’m not spamming too much with basic questions
I’m trying to change the redirect link after logout from admin area.
The logout button under sitename.
I tried accessing with this example but I mainly get the error: LeftAndMain subclasses (CustomAdmin) must have url_segment.
Basically I wish to redirect to home page and not to login form after logout.
use SilverStripe\Admin\ModelAdmin;
class CustomAdmin extends ModelAdmin
{
private static $menu_title = 'My Custom Admin';
}