If a user starts out in my app unauthenticated and then logs in, I can have my Rails back-end return the user data, and create a User model in my Ember app.
However, what if a user starts out in the app authenticated? How can I use session
to fetch the user's details from Rails?
I'm using the ember-simple-auth-devise authenticator.