From 682b7656bc06534246b707e20794574afe3957f3 Mon Sep 17 00:00:00 2001 From: Chad Date: Mon, 25 Mar 2024 17:35:19 +1300 Subject: [PATCH] Update RefreshMethodType.cs --- src/Umbraco.Core/Sync/RefreshMethodType.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Umbraco.Core/Sync/RefreshMethodType.cs b/src/Umbraco.Core/Sync/RefreshMethodType.cs index f249a4701e..11de3a627f 100644 --- a/src/Umbraco.Core/Sync/RefreshMethodType.cs +++ b/src/Umbraco.Core/Sync/RefreshMethodType.cs @@ -10,12 +10,12 @@ public enum RefreshMethodType // that enum should get merged somehow with MessageType and renamed somehow // but at the moment it is exposed in CacheRefresher webservice through RefreshInstruction // so for the time being we keep it as-is for backward compatibility reasons - RefreshAll, - RefreshByGuid, - RefreshById, - RefreshByIds, - RefreshByJson, - RemoveById, + RefreshAll = 0, + RefreshByGuid = 1, + RefreshById = 2, + RefreshByIds = 3, + RefreshByJson = 4, + RemoveById = 5, // would adding values break backward compatibility? // RemoveByIds