I want to have a ModelAdmin interface show up as the default rather than Pages - is there a way to do this?
Show silverstripe ModelAdmin by default
Asked Answered
You can set the default admin panel by adding the following your config.yml
file:
AdminRootController:
default_panel: 'NumberOneSuperAwesomeAdmin'
Yes, you can set the default login destination in your config.yml like this:
Security:
default_login_dest: 'admin/mymodeladmin'
You can set the default admin panel by adding the following your config.yml
file:
AdminRootController:
default_panel: 'NumberOneSuperAwesomeAdmin'
© 2022 - 2024 — McMap. All rights reserved.