admin: admin section for thirdparty

This commit is contained in:
nobohan
2022-05-09 17:14:25 +02:00
parent 1c04a873c0
commit 1a764025e1
5 changed files with 50 additions and 2 deletions

View File

@@ -33,7 +33,9 @@ class AdminMenuBuilder implements LocalMenuBuilderInterface
return;
}
$menu->addChild('Third party')
$menu->addChild('Third party', [
'route' => 'chill_thirdparty_admin_index',
])
->setAttribute('class', 'list-group-item-header')
->setExtras(['order' => 3000, 'header' => true]);
@@ -44,6 +46,6 @@ class AdminMenuBuilder implements LocalMenuBuilderInterface
public static function getMenuIds(): array
{
return ['admin_section'];
return ['admin_section', 'admin_thirdparty'];
}
}