Skip to content

Commit

Permalink
Update RefreshMethodType.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
nzdev authored and JasonElkin committed Apr 2, 2024
1 parent fdea8c2 commit 682b765
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/Umbraco.Core/Sync/RefreshMethodType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 682b765

Please sign in to comment.