Skip to content

Commit

Permalink
fixup! 🎨(api) convert camelCase routes' params to snake_case
Browse files Browse the repository at this point in the history
  • Loading branch information
lebaudantoine committed Sep 19, 2023
1 parent 533e362 commit b7ceabe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ralph/api/routers/statements.py
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ async def put(
current_user: Annotated[AuthenticatedUser, Depends(get_authenticated_user)],
statement: LaxStatement,
background_tasks: BackgroundTasks,
statement_id: UUID = Query(..., alias="statementId"),
statement_id: UUID = Query(alias="statementId"),
_=Depends(strict_query_params),
):
"""Store a single statement as a single member of a set.
Expand Down

0 comments on commit b7ceabe

Please sign in to comment.