rogamoore

Results 15 comments of rogamoore

@alexander-schranz Thanks for your feedback! I've checked the PR you've linked (https://github.com/sulu/sulu/pull/6859/files) and my changes are pretty much the same (which I think is a good sign) with the difference...

So, I found that the reason why `generator` is `null` is because in my config there is no mapping defined: ```yaml # missing sulu_route: mappings: Sulu\Bundle\ArticleBundle\Document\ArticleDocument: generator: schema options: route_schema:...

I can get past the error, when using this mapping (not the default from the docs): ```yaml sulu_route: mappings: Sulu\Bundle\ArticleBundle\Document\ArticleDocument: generator: schema options: route_schema: '/articles/{is_array(object) ? implode("-", object) : object.getTitle()}'...

I think this issue can be closed now that #610 has been merged - the feature will be available in the next release (2.5.0 I guess)

This is our current implementation, which allows either exact match (but ignoring query params) or sub path matching (e.g. when on https://www.example.com/somepath/subpath, https://www.example.com/somepath is considered active). It also takes care...