Implemented username reserve feature

This commit is contained in:
2021-03-03 04:24:33 +11:00
parent 3d4bae1281
commit e3ef30c10c
7 changed files with 101 additions and 6 deletions
+2 -5
View File
@@ -1,10 +1,7 @@
const express = require('express');
const router = express.Router();
//the routes
//TODO: import the routes here
//basic route management
//TODO: define the routes here
//reserve the name using a pseudonym
router.post('/reserve', require('./reserve'));
module.exports = router;