Skip to content

Commit 682b765

Browse files
nzdevJasonElkin
authored andcommitted
Update RefreshMethodType.cs
1 parent fdea8c2 commit 682b765

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/Umbraco.Core/Sync/RefreshMethodType.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ public enum RefreshMethodType
1010
// that enum should get merged somehow with MessageType and renamed somehow
1111
// but at the moment it is exposed in CacheRefresher webservice through RefreshInstruction
1212
// so for the time being we keep it as-is for backward compatibility reasons
13-
RefreshAll,
14-
RefreshByGuid,
15-
RefreshById,
16-
RefreshByIds,
17-
RefreshByJson,
18-
RemoveById,
13+
RefreshAll = 0,
14+
RefreshByGuid = 1,
15+
RefreshById = 2,
16+
RefreshByIds = 3,
17+
RefreshByJson = 4,
18+
RemoveById = 5,
1919

2020
// would adding values break backward compatibility?
2121
// RemoveByIds

0 commit comments

Comments
 (0)