Files
Umbraco-CMS/tests/Umbraco.Tests.Common/TestLastChanceFinder.cs

13 lines
313 B
C#
Raw Normal View History

// Copyright (c) Umbraco.
// See LICENSE for more details.
using System.Threading.Tasks;
using Umbraco.Cms.Core.Routing;
namespace Umbraco.Cms.Tests.Common;
public class TestLastChanceFinder : IContentLastChanceFinder
{
public async Task<bool> TryFindContent(IPublishedRequestBuilder frequest) => false;
}