This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/discourse/routes/user-notifications.js.es6
2018-06-15 17:03:24 +02:00

32 lines
743 B
JavaScript

import ViewingActionType from "discourse/mixins/viewing-action-type";
export default Discourse.Route.extend(ViewingActionType, {
renderTemplate() {
this.render("user/notifications");
},
actions: {
didTransition() {
this.controllerFor("user-notifications")._showFooter();
return true;
}
},
model() {
const username = this.modelFor("user").get("username");
if (
this.get("currentUser.username") === username ||
this.get("currentUser.admin")
) {
return this.store.find("notification", { username });
}
},
setupController(controller, model) {
controller.set("model", model);
controller.set("user", this.modelFor("user"));
this.viewingActionType(-1);
}
});