14 lines
271 B
JavaScript
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();
|
|
}
|
|
};
|