mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
59efd280ad
Standardise template locations Move CMSSettingsController class to SiteConfig module Fix CMSMenu behaviour for namespaced admin sections Split classes into one per file Manual fixes and cleanup
36 lines
816 B
YAML
36 lines
816 B
YAML
---
|
|
Name: rootroutes
|
|
Before: '*'
|
|
---
|
|
Director:
|
|
rules:
|
|
'': 'Controller'
|
|
---
|
|
Name: coreroutes
|
|
Before: '*'
|
|
After:
|
|
- '#rootroutes'
|
|
- '#modelascontrollerroutes'
|
|
---
|
|
Director:
|
|
rules:
|
|
'Security//$Action/$ID/$OtherID': 'SilverStripe\Security\Security'
|
|
'CMSSecurity//$Action/$ID/$OtherID': 'SilverStripe\Security\CMSSecurity'
|
|
'dev': 'DevelopmentAdmin'
|
|
'interactive': 'SapphireREPL'
|
|
'InstallerTest//$Action/$ID/$OtherID': 'InstallerTest'
|
|
'JSTestRunner//$Action/$ID/$OtherID': 'JSTestRunner'
|
|
'SapphireInfo//$Action/$ID/$OtherID': 'SapphireInfo'
|
|
'SapphireREPL//$Action/$ID/$OtherID': 'SapphireREPL'
|
|
---
|
|
Name: adminroutes
|
|
Before: '*'
|
|
After:
|
|
- '#rootroutes'
|
|
- '#coreroutes'
|
|
- '#modelascontrollerroutes'
|
|
---
|
|
Director:
|
|
rules:
|
|
'admin': 'SilverStripe\Admin\AdminRootController'
|