-
Notifications
You must be signed in to change notification settings - Fork 140
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
adjust to routing cleanup #244
Conversation
phpcr: | ||
route_basepaths: | ||
- /cms/routes | ||
- /cms/simple |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
need to adapt CoreBundle to prepent the right things.
@@ -34,7 +34,8 @@ public function load(ObjectManager $dm) | |||
{ | |||
$session = $dm->getPhpcrSession(); | |||
|
|||
$basepath = $this->container->getParameter('cmf_routing.dynamic.persistence.phpcr.route_basepath'); | |||
$basepath = $this->container->getParameter('cmf_routing.dynamic.persistence.phpcr.route_basepaths'); | |||
$basepath = reset($basepath); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cmf_routing.dynamic.persistence.phpcr.admin_basepath
would be possible now
persistence: | ||
phpcr: | ||
# TODO remove once https://github.com/jackalope/jackalope-doctrine-dbal/issues/189 is fixed | ||
prefetch: 0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is now fixed.
…into routing-cleanup Conflicts: composer.lock
adjust to symfony-cmf/routing-bundle#210 and friends.