FIX: missing download my posts button FIX: moderators had no way of seeing responses and edits etc
13 lines
262 B
JavaScript
13 lines
262 B
JavaScript
export default Discourse.Route.extend({
|
|
controllerName: 'user-notifications',
|
|
renderTemplate() {
|
|
this.render("user/notifications-index");
|
|
},
|
|
|
|
afterModel(model){
|
|
if (!model) {
|
|
this.transitionTo('userNotifications.responses');
|
|
}
|
|
},
|
|
});
|