Skip to content

Commit

Permalink
Remove old TODO comments
Browse files Browse the repository at this point in the history
  • Loading branch information
augusto-herrmann committed Jan 19, 2024
1 parent 07f57dc commit 148313d
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions src/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,11 +304,6 @@ async def create_or_update_plano_entregas(
plano_entregas: schemas.PlanoEntregasSchema,
response: Response,
db: DbContextManager = Depends(DbContextManager),
# TODO: Obter meios de verificar permissão opcional. O código abaixo
# bloqueia o acesso, mesmo informando que é opcional.
# access_token_info: Optional[FiefAccessTokenInfo] = Depends(
# auth_backend.authenticated(permissions=["all:read"], optional=True)
# ),
):
"""Cria um novo plano de entregas ou, se existente, substitui um
plano de entregas por um novo com os dados informados."""
Expand Down Expand Up @@ -432,11 +427,6 @@ async def create_or_update_plano_trabalho(
plano_trabalho: schemas.PlanoTrabalhoSchema,
response: Response,
db: DbContextManager = Depends(DbContextManager),
# TODO: Obter meios de verificar permissão opcional. O código abaixo
# bloqueia o acesso, mesmo informando que é opcional.
# access_token_info: Optional[FiefAccessTokenInfo] = Depends(
# auth_backend.authenticated(permissions=["all:read"], optional=True)
# ),
):
"""Cria um novo plano de trabalho ou, se existente, substitui um
plano de trabalho por um novo com os dados informados."""
Expand Down

0 comments on commit 148313d

Please sign in to comment.