You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
306 B
JavaScript

1 year ago
// Strict Mode
"use strict";
// Imports
import authentication from "../../authentication/authentication.js";
// Handler
export default async function handler ( req, res ) {
try {
await authentication.setUser(req, res, "");
res.send(200);
} catch {
res.send(500);
};
};