Added chain to Slug token to enable TextTokens for Autoroute configuration. (#8755)

This commit is contained in:
Andrea Piovanelli 2024-02-21 11:18:33 +01:00 committed by GitHub
parent 90b104ed74
commit d46f26d4c7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -41,6 +41,7 @@ namespace Orchard.Autoroute.Providers {
context.For<IContent>("Content")
// {Content.Slug}
.Token("Slug", (content => content == null ? String.Empty : _slugService.Slugify(content)))
.Chain("Slug", "Text", (content => content == null ? String.Empty : _slugService.Slugify(content)))
.Token("Path", (content => {
var autoroutePart = content.As<AutoroutePart>();
if (autoroutePart == null) {