DockYard/ember-route-action-helper

Doesn't find async actions

Closed this issue · 4 comments

For some reason, this helper doesn't find async actions, e.g.

actions: {
  async submit() {
    await doSomething();
    await doAnotherThing();
  }
}

The above works if using just (action 'submit' in another context.

What version are you using? This should have been fixed in #60

v2.0.2. Looks like that merge is still in master, not released yet.

Released 2.0.5

Sweet, thanks a bunch!