* Sanitize dictionary overview and export actions * Amend dictionary services with async and attempt pattern + isolate temporary file handling in its own service. * Update OpenAPI schema to match new dictionary bulk actions * Implement move API for dictionary items. * Add unit tests for dictionary item move * Fix merge * Update OpenAPI json after merge
18 lines
511 B
C#
18 lines
511 B
C#
using Umbraco.Cms.Core.Events;
|
|
using Umbraco.Cms.Core.Models;
|
|
|
|
namespace Umbraco.Cms.Core.Notifications;
|
|
|
|
public class DictionaryItemMovedNotification : MovedNotification<IDictionaryItem>
|
|
{
|
|
public DictionaryItemMovedNotification(MoveEventInfo<IDictionaryItem> target, EventMessages messages)
|
|
: base(target, messages)
|
|
{
|
|
}
|
|
|
|
public DictionaryItemMovedNotification(IEnumerable<MoveEventInfo<IDictionaryItem>> target, EventMessages messages)
|
|
: base(target, messages)
|
|
{
|
|
}
|
|
}
|