Skip to content
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

Open
wants to merge 3 commits into
base: andrew_testing
Choose a base branch
from

Conversation

andrew-bierman
Copy link
Owner

No description provided.

@render
Copy link

render bot commented Sep 28, 2023

router.post(
'/',
(req, res, next) => zodParser(validator.addToFavorite, req.body, next),
tryCatchWrapper(addToFavorite),

Check failure

Code scanning / CodeQL

Missing rate limiting

This route handler performs [a database access](1), but is not rate-limited.
router.put(
'/',
(req, res, next) => zodParser(validator.editUser, req.body, next),
tryCatchWrapper(editUser),

Check failure

Code scanning / CodeQL

Missing rate limiting

This route handler performs [a database access](1), but is not rate-limited.
router.put(
'/',
(req, res, next) => zodParser(validator.editTrip, req.body, next),
tryCatchWrapper(editTrip),

Check failure

Code scanning / CodeQL

Missing rate limiting

This route handler performs [a database access](1), but is not rate-limited.
router.delete(
'/',
(req, res, next) => zodParser(validator.deleteTrip, req.body, next),
tryCatchWrapper(deleteTrip),

Check failure

Code scanning / CodeQL

Missing rate limiting

This route handler performs [a database access](1), but is not rate-limited.
router.post(
'/signin',
(req, res, next) => zodParser(validator.userSignIn, req.body, next),
tryCatchWrapper(userSignIn),

Check failure

Code scanning / CodeQL

Missing rate limiting

This route handler performs [authorization](1), but is not rate-limited.
router.post(
'/signup',
(req, res, next) => zodParser(validator.userSignUp, req.body, next),
tryCatchWrapper(userSignup),

Check failure

Code scanning / CodeQL

Missing rate limiting

This route handler performs [authorization](1), but is not rate-limited. This route handler performs [authorization](2), but is not rate-limited.
router.delete(
'/',
(req, res, next) => zodParser(validator.deleteUser, req.body, next),
tryCatchWrapper(deleteUser),

Check failure

Code scanning / CodeQL

Missing rate limiting

This route handler performs [a database access](1), but is not rate-limited.
@render
Copy link

render bot commented Sep 28, 2023

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant