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

Add Cluster Environment #4

Merged
merged 158 commits into from
Oct 8, 2023
Merged

Add Cluster Environment #4

merged 158 commits into from
Oct 8, 2023

Conversation

antoniolago
Copy link
Owner

No description provided.

@antoniolago antoniolago changed the title Functional Dev Environment Add Cluster Environment Oct 8, 2023
const institutionsService = new InstitutionsService();
const institutionsController = new InstitutionsController(institutionsService);

app.post("/api/institutions", authMiddleware, institutionsController.save);

Check failure

Code scanning / CodeQL

Missing rate limiting

This route handler performs [authorization](1), but is not rate-limited.

app.post("/api/institutions", authMiddleware, institutionsController.save);
app.get("/api/institutions", institutionsController.index);
app.get("/api/institutions/me", authMiddleware, institutionsController.me);

Check failure

Code scanning / CodeQL

Missing rate limiting

This route handler performs [authorization](1), but is not rate-limited.

app.get("/api/user", userController.index);

app.post("/api/accounts/login", accountsController.login);

Check failure

Code scanning / CodeQL

Missing rate limiting

This route handler performs [authorization](1), but is not rate-limited.
app.get("/api/user", userController.index);

app.post("/api/accounts/login", accountsController.login);
app.post("/api/accounts/login-google", accountsController.loginGoogle);

Check failure

Code scanning / CodeQL

Missing rate limiting

This route handler performs [authorization](1), but is not rate-limited.
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.

Definir um ambiente de desenvolvimento dinâmico Definir como as secrets serão armazenadas
2 participants