Merge branch 'develop' into activitypub

This commit is contained in:
Barış Soner Uşaklı
2024-08-21 12:57:10 -04:00
108 changed files with 635 additions and 325 deletions

View File

@@ -207,3 +207,10 @@ Topics.bump = async (req, res) => {
helpers.formatApiResponse(200, res);
};
Topics.move = async (req, res) => {
const { cid } = req.body;
await api.topics.move(req, { cid, ...req.params });
helpers.formatApiResponse(200, res);
};