Replacement for umbraco.BusinessLogic.Actions.Action.GetAll()?
When I call:
umbraco.BusinessLogic.Actions.Action.GetAll
I am given a warning indicating that is deprecated and that I should use ActionsResolver.Current.Actions instead. However, the ActionsResolver class is internal, and so I can't use it unless I am in the Umbraco core. Is there some public class that would give me access to all Actions?
Replacement for umbraco.BusinessLogic.Actions.Action.GetAll()?
When I call:
I am given a warning indicating that is deprecated and that I should use ActionsResolver.Current.Actions instead. However, the ActionsResolver class is internal, and so I can't use it unless I am in the Umbraco core. Is there some public class that would give me access to all Actions?
FYI, here is the ActionsResolver class in the Umbraco core: https://github.com/umbraco/Umbraco-CMS/blob/a3d4ccc062b94859e446b1206bf21f334577a35c/src/Umbraco.Core/ActionsResolver.cs
is working on a reply...