I have an action defined as
doSomething: { asyncResult: true}
in the code I have
doSomething("some params").then(..).catch(...)
This used to work in 0.2.x versions. After upgrade to 5.0.4 action invocation started to return undefined which naturally was throwing a JS exception.
Why is this no longer working? What is an alternative approach if this is not a bug?