mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-01-21 23:12:58 +01:00
changed posts.reply to use the getUserFields method and removed the 2 old methods from user.js
This commit is contained in:
39
src/posts.js
39
src/posts.js
@@ -162,29 +162,28 @@ var RDB = require('./redis.js'),
|
||||
timeout: 2000
|
||||
});
|
||||
|
||||
user.get_user_postdetails(uid, function(user_details) {
|
||||
user.get_gravatars_by_uids(uid, '', function(gravatars) {
|
||||
var timestamp = new Date().getTime();
|
||||
|
||||
user.getUserFields(uid, ['username','reputation','picture'], function(data){
|
||||
|
||||
var timestamp = new Date().getTime();
|
||||
|
||||
socket.in('topic_' + tid).emit('event:new_post', {
|
||||
'posts' : [
|
||||
{
|
||||
'pid' : pid,
|
||||
'content' : marked(content || ''),
|
||||
'uid' : uid,
|
||||
'username' : user_details.username[0] || 'anonymous',
|
||||
'user_rep' : user_details.rep[0] || 0,
|
||||
'post_rep' : 0,
|
||||
'gravatar' : gravatars[0],
|
||||
'timestamp' : timestamp,
|
||||
'relativeTime': utils.relativeTime(timestamp),
|
||||
'fav_star_class' :'icon-star-empty'
|
||||
}
|
||||
]
|
||||
});
|
||||
socket.in('topic_' + tid).emit('event:new_post', {
|
||||
'posts' : [
|
||||
{
|
||||
'pid' : pid,
|
||||
'content' : marked(content || ''),
|
||||
'uid' : uid,
|
||||
'username' : data.username || 'anonymous',
|
||||
'user_rep' : data.reputation || 0,
|
||||
'post_rep' : 0,
|
||||
'gravatar' : data.picture,
|
||||
'timestamp' : timestamp,
|
||||
'relativeTime': utils.relativeTime(timestamp),
|
||||
'fav_star_class' :'icon-star-empty'
|
||||
}
|
||||
]
|
||||
});
|
||||
});
|
||||
|
||||
|
||||
});
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user