UNPKG

authmaker-ember-simple-auth

Version:

Ember Simple Auth authenticator and authorizer for Authmaker

11 lines (8 loc) 232 B
import Route from '@ember/routing/route'; import { inject as service } from '@ember/service'; export default class ApplicationRoute extends Route { @service session; async beforeModel() { await this.session.setup(); } }