wisdom #20

Merged
bragaz_rexita merged 2 commits from wisdom into main 2025-12-23 05:19:45 +00:00
2 changed files with 3 additions and 2 deletions
Showing only changes of commit 37185a9fbc - Show all commits

View File

@@ -125,7 +125,8 @@ class AuthController {
const response = await setResponse(
{
accessToken: tokens.accessToken
accessToken: tokens.accessToken,
idData
},
'Verify successful'
);

View File

@@ -15,7 +15,7 @@ router
router
.route('/:id')
.get(verifyToken.verifyAccessToken, verifyAccess(), NotificationErrorController.getById)
.get(verifyToken.verifyAccessToken, NotificationErrorController.getById)
.put(verifyToken.verifyAccessToken, verifyAccess(), NotificationErrorController.update)
module.exports = router;