mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-11 00:15:46 +01:00
deleting a user will delete topic tags too
This commit is contained in:
@@ -57,23 +57,23 @@ module.exports = function(Topics) {
|
||||
}
|
||||
|
||||
Topics.updateTags = function(tid, tags) {
|
||||
async.parallel({
|
||||
timestamp: function(next) {
|
||||
Topics.getTopicField(tid, 'timestamp', next);
|
||||
},
|
||||
currentTags: function(next) {
|
||||
Topics.getTopicTags(tid, next);
|
||||
}
|
||||
}, function(err, results) {
|
||||
removeTopicTags(tid, results.currentTags, function(err) {
|
||||
Topics.getTopicField(tid, 'timestamp', function(err, timestamp) {
|
||||
if (!err) {
|
||||
Topics.createTags(tags, tid, results.timestamp);
|
||||
Topics.deleteTopicTags(tid, function(err) {
|
||||
if (!err) {
|
||||
Topics.createTags(tags, tid, timestamp);
|
||||
}
|
||||
});
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
function removeTopicTags(tid, tags, callback) {
|
||||
Topics.deleteTopicTags = function(tid, callback) {
|
||||
Topics.getTopicTags(tid, function(err, tags) {
|
||||
if (err) {
|
||||
return callback(err);
|
||||
}
|
||||
|
||||
async.parallel([
|
||||
function(next) {
|
||||
db.delete('topic:' + tid + ':tags', next);
|
||||
@@ -84,7 +84,8 @@ module.exports = function(Topics) {
|
||||
}, next);
|
||||
}
|
||||
], callback);
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
Topics.searchTags = function(query, callback) {
|
||||
if (!query || query.length === 0) {
|
||||
|
||||
@@ -153,7 +153,6 @@ module.exports = function(User) {
|
||||
}
|
||||
|
||||
function deleteTopic(tid, callback) {
|
||||
|
||||
async.parallel([
|
||||
function(next) {
|
||||
db.delete('tid:' + tid + ':followers', next);
|
||||
@@ -175,6 +174,9 @@ module.exports = function(User) {
|
||||
},
|
||||
function(next) {
|
||||
deleteTopicFromCategory(tid, next);
|
||||
},
|
||||
function(next) {
|
||||
topics.deleteTopicTags(tid, next);
|
||||
}
|
||||
], function(err) {
|
||||
if (err) {
|
||||
|
||||
Reference in New Issue
Block a user