feat : customer can set User Name

feat : customer can update username.
wip : update the SMS template for user name.
This commit is contained in:
2025-10-24 13:04:58 +05:30
parent 96af9ff264
commit 08e47e2e92
6 changed files with 116 additions and 10 deletions

View File

@@ -12,6 +12,8 @@ router.post('/login_password', authenticate, authController.setLoginPassword);
router.post('/transaction_password',authenticate,authController.setTransactionPassword);
router.post('/change/login_password',authenticate,authController.changeLoginPassword);
router.post('/change/transaction_password',authenticate,authController.changeTransPassword);
router.get('/user_name',authenticate,authController.isUserNameExits);
router.post('/user_name',authenticate,authController.setUserName);
module.exports = router;