-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix/updating linting script #401
base: andrew_testing
Are you sure you want to change the base?
Conversation
Your Render PR Server URL is https://packrat-dev-pr-401.onrender.com. Follow its progress at https://dashboard.render.com/web/srv-ckaebkegtj9c73aailu0. |
router.post( | ||
'/', | ||
(req, res, next) => zodParser(validator.addToFavorite, req.body, next), | ||
tryCatchWrapper(addToFavorite), |
Check failure
Code scanning / CodeQL
Missing rate limiting
router.put( | ||
'/', | ||
(req, res, next) => zodParser(validator.editUser, req.body, next), | ||
tryCatchWrapper(editUser), |
Check failure
Code scanning / CodeQL
Missing rate limiting
router.put( | ||
'/', | ||
(req, res, next) => zodParser(validator.editTrip, req.body, next), | ||
tryCatchWrapper(editTrip), |
Check failure
Code scanning / CodeQL
Missing rate limiting
router.delete( | ||
'/', | ||
(req, res, next) => zodParser(validator.deleteTrip, req.body, next), | ||
tryCatchWrapper(deleteTrip), |
Check failure
Code scanning / CodeQL
Missing rate limiting
router.post( | ||
'/signin', | ||
(req, res, next) => zodParser(validator.userSignIn, req.body, next), | ||
tryCatchWrapper(userSignIn), |
Check failure
Code scanning / CodeQL
Missing rate limiting
router.post( | ||
'/signup', | ||
(req, res, next) => zodParser(validator.userSignUp, req.body, next), | ||
tryCatchWrapper(userSignup), |
Check failure
Code scanning / CodeQL
Missing rate limiting
router.delete( | ||
'/', | ||
(req, res, next) => zodParser(validator.deleteUser, req.body, next), | ||
tryCatchWrapper(deleteUser), |
Check failure
Code scanning / CodeQL
Missing rate limiting
Your Render PR Server at https://packrat-dev-pr-401.onrender.com is now live! View it on your dashboard at https://dashboard.render.com/web/srv-ckaebkegtj9c73aailu0. |
No description provided.