How to find Ember-Simple-Auth authenticator in Octane?

I am trying to slowly move my Bloggr example to Octanes Module Unification and I got it almost working. The only step left is that I don’t know how Ember Simple Auth must find the pouch.js authenticator in the src folder. See: https://github.com/broerse/ember-cli-blog/blob/master/src/simple-auth/authenticators/pouch.js So at the moment you can’t login :disappointed:

Can someone point me in the right direction? It seems I am almost there.

1 Like

I did this recently, are you using module unification? If so, you’ll need this config:

Thanks but this was already in my code:

https://github.com/broerse/ember-cli-blog/blob/master/src/resolver.js#L23

but it does not use the pouch authenticator with this. I think I have put the authenticator in the correct folder. Can you take a look? Almost working source: GitHub - broerse/ember-cli-blog: Tom Dale's blog example updated for the Ember CLI

1 Like

Looks like the collections part is missing?

Thanks for helping me. I got it working !!!. In your source and mine, there is a mismatch between definitiveCollection: 'authenticator'and the collection authenticators. I fixed it just now by adding the s and the simple-auth group. See:

1 Like