Код шаблона:
Код: Выделить всё
...
Код: Выделить всё
signinTask: task(function* () {
...
try {
yield this.get('session').authenticate('authenticator:api', {
identification: email,
password,
});
this.get('metrics').trackEvent({ // this code
email, // is
event: 'Log in', // never
}); // executed
} catch (error) {
...
}
}).restartable(),
Подробнее здесь: https://stackoverflow.com/questions/798 ... r-executed