Skip to content

Commit

Permalink
fix blueprint
Browse files Browse the repository at this point in the history
  • Loading branch information
leafty committed Feb 7, 2025
1 parent 6a9167f commit c5bf8b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/renku_data_services/session/blueprints.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ def get_environment_builds(self) -> BlueprintFactoryResponse:
"""Get all container image builds belonging to a session environment."""

@authenticate(self.authenticator)
async def _get_environment_builds(_: Request, user: base_models.APIUser, project_id: ULID) -> JSONResponse:
async def _get_environment_builds(_: Request, user: base_models.APIUser, environment_id: ULID) -> JSONResponse:
raise errors.ProgrammingError(message="Not implemented")

return "/environments/<environment_id:ulid>/builds", ["GET"], _get_environment_builds

0 comments on commit c5bf8b2

Please sign in to comment.