Files
Umbraco-CMS/src/Umbraco.Core/Notifications/DictionaryItemMovedNotification.cs
Kenn Jacobsen 36dc35f8aa Add "move" to dictionary API (#13810)
* 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
2023-02-10 08:32:24 +01:00

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)
{
}
}