Node-MySQL-JWT-Signup-Login-API icon indicating copy to clipboard operation
Node-MySQL-JWT-Signup-Login-API copied to clipboard

Results 1 Node-MySQL-JWT-Signup-Login-API issues
Sort by recently updated
recently updated
newest added

Though I'm able to signup and userlogin in Postman here; ``` app.post('/signup', addNewUser); app.post('/userlogin', userLoginCheck);, ``` I'm unable to get anything from the following endpoints; ``` apiRoutes.get('/', welcome); apiRoutes.get('/users', findAllUsers);...