UNPKG

262 BJavaScriptView Raw
1'use strict';
2
3module.exports = {
4 name: require('./package').name,
5
6 included() {
7 let app = this._findHost(this);
8 app.options['ember-simple-auth'] = {
9 useSessionSetupMethod: true,
10 };
11
12 this._super.included.apply(this, arguments);
13 },
14};