1
0
Fork 0
auth.rxbn.de/bin/web/routes/api/register.js

18 lines
461 B
JavaScript

module.exports = {
path: "/register",
/**
* register a user; currently not implemented
* @url /register
* @method POST
*/
post: async (req, res) => {
// if registration is disabled
if(!global['gds'].cfg.web.registration) {
return res.type('json').status(400).end(JSON.stringify({status: 400, message: "msg.auth.registration.deactivated"}));
} else {
// am i rite?
return res.type('json').status(200).end(JSON.stringify({}));
}
}
};