How to use the ember-simple-auth/session-stores/cookie.extend function in ember-simple-auth

To help you get started, we’ve selected a few ember-simple-auth examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github apache / incubator-pinot / thirdeye / thirdeye-frontend / app / session-stores / application.js View on Github external
// app/session-stores/application.js
import CookieStore from 'ember-simple-auth/session-stores/cookie';

export default CookieStore.extend({
  restore() {
    return this._super();
  }
});