I am using ember-simple-auth for authentication in my ember-cli application. It seems that ember-simple-auth is storing the session in local storage which doesn't seem to be secure.
I have following two questions:
- I can see the session data and also able to modify it. How do I secure this session data?
- How do I clear this storage on browser close? My session and it's data are still active after I close and reopen the browser.
Thanks.