actiocate user

This commit is contained in:
CHIEFSOFT\ameye
2024-10-31 15:26:29 -04:00
parent d7df8d1b5b
commit 157a6ed8a5
3 changed files with 65 additions and 27 deletions
+3
View File
@@ -44,6 +44,9 @@ const cardsControllers = {
},
acceptCardTerms: function (req, resp){
},
activateCard: function (req, res) {
cards.activateCard(req, res, function (err, dist) {
+3
View File
@@ -8,6 +8,9 @@ module.exports = function(app) {
.post(cardsControllers.createApplications);
app.route('/createCardHolder')
.post(cardsControllers.createCardHolder);
app.route('/acceptterms')
.post(cardsControllers.acceptCardTerms);
app.route('/create')
.post(cardsControllers.createCard);
app.route('/create')