Skip to content

DotVVM 2.4 Preview 2

Pre-release
Pre-release
Compare
Choose a tag to compare
@quigamdev quigamdev released this 28 Dec 14:40

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"));