From 64bc0cf973c389539d0e9e38c72cb8ffd6f3afda Mon Sep 17 00:00:00 2001 From: Bjarke Berg Date: Wed, 20 Mar 2019 07:35:00 +0100 Subject: [PATCH] Renamed SendingDashboardModelV2 to SendingDashboardSlimModel --- src/Umbraco.Web/Editors/EditorModelEventManager.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Umbraco.Web/Editors/EditorModelEventManager.cs b/src/Umbraco.Web/Editors/EditorModelEventManager.cs index 40c45ca8c3..2b3eb278ee 100644 --- a/src/Umbraco.Web/Editors/EditorModelEventManager.cs +++ b/src/Umbraco.Web/Editors/EditorModelEventManager.cs @@ -18,14 +18,14 @@ namespace Umbraco.Web.Editors public static event TypedEventHandler> SendingMemberModel; public static event TypedEventHandler> SendingUserModel; - [Obsolete("Please Use SendingDashboardModelV2")] + [Obsolete("Please Use SendingDashboardSlimModel")] [EditorBrowsable(EditorBrowsableState.Never)] public static event TypedEventHandler>>> SendingDashboardModel; - public static event TypedEventHandler>>> SendingDashboardModelV2; + public static event TypedEventHandler>>> SendingDashboardSlimModel; private static void OnSendingDashboardModel(HttpActionExecutedContext sender, EditorModelEventArgs>> e) { - var handler = SendingDashboardModelV2; + var handler = SendingDashboardSlimModel; handler?.Invoke(sender, e); }