2019-11-22 13:13:19 +11:00
|
|
|
|
using Umbraco.Core;
|
|
|
|
|
|
using Umbraco.Core.Composing;
|
|
|
|
|
|
using Umbraco.Core.Dictionary;
|
2019-03-04 17:26:31 +01:00
|
|
|
|
|
|
|
|
|
|
namespace Umbraco.Web.Runtime
|
|
|
|
|
|
{
|
2019-03-05 08:47:31 +01:00
|
|
|
|
// web's final composer composes after all user composers
|
2019-04-05 19:00:34 +02:00
|
|
|
|
// and *also* after ICoreComposer (in case IUserComposer is disabled)
|
2019-03-05 08:47:31 +01:00
|
|
|
|
[ComposeAfter(typeof(IUserComposer))]
|
2019-04-05 19:00:34 +02:00
|
|
|
|
[ComposeAfter(typeof(ICoreComposer))]
|
2019-03-04 17:26:31 +01:00
|
|
|
|
public class WebFinalComposer : ComponentComposer<WebFinalComponent>
|
2019-11-22 13:13:19 +11:00
|
|
|
|
{
|
|
|
|
|
|
}
|
2019-03-04 17:26:31 +01:00
|
|
|
|
}
|