Files
Umbraco-CMS/src/Umbraco.Core/WebAssets/CustomBackOfficeAssetsCollectionBuilder.cs
Matthew-Wise c341a39306 Add a collection to allow adding CSS and JS to the back office via C# (#10310)
* Added Custom back office collection builder, to allow css / js to be added to the back office using c#

* Added call to the collection

* Added obselete attribute to PropertyEditorAssetAttribute
2021-06-02 12:28:14 +02:00

10 lines
344 B
C#

using Umbraco.Cms.Core.Composing;
namespace Umbraco.Cms.Core.WebAssets
{
public class CustomBackOfficeAssetsCollectionBuilder : OrderedCollectionBuilderBase<CustomBackOfficeAssetsCollectionBuilder, CustomBackOfficeAssetsCollection, IAssetFile>
{
protected override CustomBackOfficeAssetsCollectionBuilder This => this;
}
}