14 lines
331 B
C#
14 lines
331 B
C#
// 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;
|
|
}
|
|
}
|