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

14 lines
271 B
JavaScript

module.exports = {
path: "/authenticate",
/**
* apps verify token
* @url /api/authenticate
* @method POST
* @POST ['applicationId', 'applicationSecret', 'userId', 'token']
* @TODO add implementation
*/
post: async (req, res) => {
return res.end();
}
};