Added favorites button to actor page.

This commit is contained in:
DebaucheryLibrarian
2021-03-15 03:30:47 +01:00
parent e371e9725a
commit 77b40817f2
27 changed files with 466 additions and 169 deletions

View File

@@ -34,6 +34,7 @@ async function fetchMeApi(req, res) {
async function signupApi(req, res) {
const user = await signup(req.body);
req.session.user = user;
res.send(user);
}