Added rudimentary tags page. Improved social match behavior.

This commit is contained in:
2019-12-01 05:32:47 +01:00
parent bead69de49
commit cf81aa99e0
41 changed files with 495 additions and 104 deletions

View File

@@ -21,7 +21,7 @@ async function fetchActorsApi(req, res) {
return;
}
const actors = await fetchActors();
const actors = await fetchActors(null, req.query.limit);
res.send(actors);
}