Vulcan/packages/nova-comments/lib/notifications.js
2016-06-23 12:17:39 +09:00

17 lines
No EOL
591 B
JavaScript

import Comments from './collection.js';
import Posts from "meteor/nova:posts";
Comments.getNotificationProperties = function (data) {
const comment = data.comment;
var commentAuthor = Meteor.users.findOne(comment.userId);
var post = Posts.findOne(comment.postId);
var properties = {
profileUrl: commentAuthor && commentAuthor.getProfileUrl(true),
postUrl: Posts.getPageUrl(post, true),
authorName : Comments.getAuthorName(comment),
postTitle: post.title,
htmlBody: comment.htmlBody,
commentUrl: Comments.getPageUrl(comment, true)
};
return properties;
};