This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| namespace Humble.Umbraco.DeliveryApi; | |
| public sealed record ApiTemplate(Guid Id, string? Name, string Alias); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using Umbraco.Cms.Core.Composing; | |
| using Umbraco.Cms.Core.Notifications; | |
| namespace Humble.Umbraco.Features.KeepMediaSorted; | |
| public class Composer : IComposer | |
| { | |
| public void Compose(IUmbracoBuilder builder) | |
| { | |
| builder.AddNotificationHandler<MediaSavedNotification, KeepMediaSortedNotificationHandler>(); |
OlderNewer