isekai-main
Baris Usakli 3 years ago
parent 6c07433dea
commit 0f14f23b2a

@ -52,6 +52,7 @@
"moved-from-by": "Moved from %1 by",
"queued-by": "Post queued for approval →",
"backlink": "Referenced by",
"forked-by": "Forked by",
"bookmark_instructions" : "Click here to return to the last read post in this thread.",

@ -58,6 +58,10 @@ Events._types = {
icon: 'fa-link',
text: '[[topic:backlink]]',
},
fork: {
icon: 'fa-code-fork',
text: '[[topic:forked-by]]'
},
};
Events.init = async () => {

@ -70,6 +70,7 @@ module.exports = function (Topics) {
downvotes: postData.downvotes,
}),
db.sortedSetsAdd(['topics:votes', `cid:${cid}:tids:votes`], postData.votes, tid),
Topics.events.log(fromTid, { type: 'fork', uid })
]);
plugins.hooks.fire('action:topic.fork', { tid: tid, fromTid: fromTid, uid: uid });

Loading…
Cancel
Save