nodeclub/proxy/topic_collect.js
alsotang 183fed23ca Revert "reformat code"
This reverts commit 5426982f5a128ec271738a51f9366dfd5b05565a.
2015-07-01 15:17:45 +08:00

22 lines
660 B
JavaScript

var TopicCollect = require('../models').TopicCollect;
exports.getTopicCollect = function (userId, topicId, callback) {
TopicCollect.findOne({user_id: userId, topic_id: topicId}, callback);
};
exports.getTopicCollectsByUserId = function (userId, callback) {
TopicCollect.find({user_id: userId}, callback);
};
exports.newAndSave = function (userId, topicId, callback) {
var topic_collect = new TopicCollect();
topic_collect.user_id = userId;
topic_collect.topic_id = topicId;
topic_collect.save(callback);
};
exports.remove = function (userId, topicId, callback) {
TopicCollect.remove({user_id: userId, topic_id: topicId}, callback);
};