FIX: 404 page when clicking a badge notification from before changing username

This commit is contained in:
Neil Lalonde 2018-01-30 15:56:33 -05:00
parent 10ed4c0078
commit aab2d102ff
1 changed files with 1 additions and 12 deletions

View File

@ -30,20 +30,9 @@ export default Discourse.Route.extend({
afterModel(model, transition) {
const username = transition.queryParams && transition.queryParams.username;
const userBadgesGrant = UserBadge.findByBadgeId(model.get("id"), {username}).then(userBadges => {
return UserBadge.findByBadgeId(model.get("id"), {username}).then(userBadges => {
this.userBadgesGrant = userBadges;
});
const userBadgesAll = UserBadge.findByUsername(username).then(userBadges => {
this.userBadgesAll = userBadges;
});
const promises = {
userBadgesGrant,
userBadgesAll,
};
return Ember.RSVP.hash(promises);
},
titleToken() {