I have a custom authenticator which inherits from the torii authenticator:
https://github.com/wayne-o/sonatribe-ui/blob/master/app/authenticators/sonatribe-facebook.js
It works in so far as I can log in and I can see the session data in local storage:
{"authenticator":"authenticator:custom","userId":"698671479","accessToken":"********","provider":"facebook-connect","user_id":"1111","user":{"slug":null,"name":null,"username":null,"profilePictureUrl":"https://fbcdn-profile-a.akamaihd.net/hprofile-ak-xfp1/v/t1.0-1/p111x111/10325277_","auth":"1111","eventsAttending":[]}}
However, upon refreshing most of the data has gone and I am left with:
{"authenticator":"authenticator:custom","provider":"facebook-connect"}
What part am i missing so that all of my session data is re-hydrated?