DotVVM 2.4 Preview 2
Pre-release
Pre-release
DotVVM 2.4 Preview 2
Support presenter factories on route groups #753
If you have several routes that use different presenter that DotvvmPresenter, you can now easily specify the presenter for all routes in a route group.
config.RouteTable.AddGroup("LocalizedRoutes", null, "Views", content => {
content.Add("default", "", "default.dothtml");
content.Add("About", "about", "about.dothml");
}, LocalizablePresenter.BasedOnQuery("lang"));