Skip to content

Instantly share code, notes, and snippets.

@AndyButland
Created April 18, 2025 05:54
Show Gist options
  • Save AndyButland/cf03cd91e439ad7fe62c922ca21a2264 to your computer and use it in GitHub Desktop.
Save AndyButland/cf03cd91e439ad7fe62c922ca21a2264 to your computer and use it in GitHub Desktop.
namespace MyProject.Web.Customization;
public static class SoftwarePageUrlHelper
{
public static bool IsSoftwarePage(string contentTypeAlias, string? contentName) =>
contentTypeAlias == "testPage" &&
!string.IsNullOrEmpty(contentName) &&
contentName.EndsWith(" Software");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment