mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-03 04:25:55 +01:00
move timestamp to server
This commit is contained in:
@@ -15,8 +15,6 @@ define('forum/topic/diffs', ['forum/topic/images', 'benchpress', 'translator'],
|
||||
return app.alertError(err.message);
|
||||
}
|
||||
|
||||
timestamps.unshift(Date.now());
|
||||
|
||||
Benchpress.parse('partials/modals/post_history', {
|
||||
diffs: timestamps.map(function (timestamp) {
|
||||
timestamp = parseInt(timestamp, 10);
|
||||
|
||||
@@ -1,10 +1,19 @@
|
||||
'use strict';
|
||||
|
||||
var async = require('async');
|
||||
var posts = require('../../posts');
|
||||
|
||||
module.exports = function (SocketPosts) {
|
||||
SocketPosts.getDiffs = function (socket, data, callback) {
|
||||
posts.diffs.list(data.pid, callback);
|
||||
async.waterfall([
|
||||
function (next) {
|
||||
posts.diffs.list(data.pid, next);
|
||||
},
|
||||
function (timestamps, next) {
|
||||
timestamps.unshift(Date.now());
|
||||
next(null, timestamps);
|
||||
},
|
||||
], callback);
|
||||
};
|
||||
|
||||
SocketPosts.showPostAt = function (socket, data, callback) {
|
||||
|
||||
Reference in New Issue
Block a user