You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
332 B
JavaScript
14 lines
332 B
JavaScript
'use strict';
|
|
|
|
var posts = require('../../posts');
|
|
|
|
module.exports = function (SocketPosts) {
|
|
SocketPosts.getDiffs = function (socket, data, callback) {
|
|
posts.diffs.list(data.pid, callback);
|
|
};
|
|
|
|
SocketPosts.showPostAt = function (socket, data, callback) {
|
|
posts.diffs.load(data.pid, data.since, socket.uid, callback);
|
|
};
|
|
};
|