Implemented accoutn verify

This commit is contained in:
ChiefSoft works
2022-06-16 03:42:15 +00:00
parent 64c5f5f90a
commit 8dea39f0d3
4 changed files with 146 additions and 6 deletions
+8 -6
View File
@@ -3,10 +3,12 @@
const controller = require('./controller');
module.exports = function(app) {
app.route('/about')
.get(controller.about);
app.route('/create')
.post(controller.postTransfer);
app.route('/status/:id')
.get(controller.getStatus);
app.route('/about')
.get(controller.about);
app.route('/create')
.post(controller.postTransfer);
app.route('/status/:id')
.get(controller.getStatus);
app.route('/verify')
.post(controller.verifyAccount);
};