Skip to content
Snippets Groups Projects

Create endpoint for user-registration

2 files
+ 25
2
Compare changes
  • Side-by-side
  • Inline
Files
2
/** POST: http://localhost:8080/api/register
* @param : {
"username" : "example123",
"password" : "admin123",
"email": "example@gmail.com",
"profile": ""
}
*/
export async function register(req,res){
res.json('register route')
}
/** POST: http://localhost:8080/api/login
* @param: {
"username" : "example123",
"password" : "admin123"
}
*/
export async function login(req,res){
res.json('register route')
}
\ No newline at end of file
Loading