Don't display notifications with deleted subjects

This commit is contained in:
Toby Zerner
2015-07-28 17:15:09 +09:30
parent 8f29949016
commit 97334bea12
4 changed files with 10 additions and 4 deletions

View File

@ -227,6 +227,8 @@ export default class Model {
return relationship && app.store.getById(relationship.data.type, relationship.data.id);
}
return false;
};
}
@ -247,6 +249,8 @@ export default class Model {
return relationship && relationship.data.map(data => app.store.getById(data.type, data.id));
}
return false;
};
}