* tests: fix float problems and PAT problem * extend CONTRIBUTING.md * extend build documentation, add GH action, fix build on MacOS * fix build on Vercel * update .gitignore and CONTRIBUTING.md * feat: begin work on monorepo * chore(actions/basic-build): use pnpm * fix: vercel-deploy * docs: updates with new folders * chore: apply PR review comments --------- Co-authored-by: martin-mfg <2026226+martin-mfg@users.noreply.github.com>
18 lines
410 B
JavaScript
18 lines
410 B
JavaScript
import { logger } from "../src/common/log.js";
|
|
import { deleteUser } from "../src/common/database.js";
|
|
|
|
/**
|
|
* @param {any} req The request.
|
|
* @param {any} res The response.
|
|
*/
|
|
export default async (req, res) => {
|
|
const { user_key } = req.query;
|
|
try {
|
|
await deleteUser(user_key);
|
|
} catch (err) {
|
|
logger.error(err);
|
|
res.send("Something went wrong: " + err.message);
|
|
}
|
|
res.send("ok");
|
|
};
|