* Fix async warning. * Fix MediaFileManager warning. * Fix TypeLoader warning. * Fix CodeBase warning. * Fix ContentTypeEditingBuilder warning. * Fix _containerKey warning. * Fix _key warning. * Fix issues due to merge with contrib --------- Co-authored-by: Laura Neto <12862535+lauraneto@users.noreply.github.com>
13 lines
324 B
C#
13 lines
324 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 Task<bool> TryFindContent(IPublishedRequestBuilder frequest) => Task.FromResult(false);
|
|
}
|