Skip to content

Commit

Permalink
fix linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Fortunka committed Feb 28, 2025
1 parent 2c9af3c commit bf0f818
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions api_app/api/routes/workspace_users.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
workspaces_users_admin_router = APIRouter(dependencies=[Depends(get_current_admin_user)])
workspaces_users_shared_router = APIRouter(dependencies=[Depends(get_current_workspace_owner_or_researcher_user_or_airlock_manager_or_tre_admin)])


@workspaces_users_shared_router.get("/workspaces/{workspace_id}/users", response_model=UsersInResponse, name=strings.API_GET_WORKSPACE_USERS)
async def get_workspace_users(workspace=Depends(get_workspace_by_id_from_path), access_service=Depends(get_access_service)) -> UsersInResponse:
users = access_service.get_workspace_users(workspace)
Expand Down

0 comments on commit bf0f818

Please sign in to comment.