also fixed a bug where tags with 0 topics were showing up in /tags
This commit is contained in:
barisusakli
2014-11-13 14:29:44 -05:00
parent 45affa3043
commit 68e8039ac7
5 changed files with 81 additions and 7 deletions

View File

@@ -11,5 +11,9 @@ Tags.update = function(socket, data, callback) {
topics.updateTag(data.tag, data, callback);
};
Tags.deleteTags = function(socket, data, callback) {
topics.deleteTags(data.tags, callback);
};
module.exports = Tags;