stores the user's bookmark on the server

This commit is contained in:
bdharrington7
2015-07-21 21:20:13 +08:00
parent 0bc4799c3c
commit 45df5a3d0b
3 changed files with 25 additions and 3 deletions

View File

@@ -96,6 +96,11 @@ SocketTopics.postcount = function(socket, tid, callback) {
topics.getTopicField(tid, 'postcount', callback);
};
SocketTopics.bookmark = function(socket, data, callback) {
// data contains tid, uid, and postIndex
topics.setUserBookmark(data, callback);
}
SocketTopics.markAsRead = function(socket, tids, callback) {
if(!Array.isArray(tids) || !socket.uid) {
return callback(new Error('[[error:invalid-data]]'));