Show default silverstripe ModelAdmin

I want the ModelAdmin interface to display as the default, not Pages - is there a way to do this?

+6
source share
2 answers

You can set the default admin panel by adding the following file config.yml:

AdminRootController:
  default_panel: 'NumberOneSuperAwesomeAdmin'
+5
source

Yes, you can specify the default login assignment in your config.yml as follows:

Security: default_login_dest: 'admin/mymodeladmin'

+6
source

Source: https://habr.com/ru/post/1016945/


All Articles