Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/conviso/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.5.0
0.5.1
6 changes: 3 additions & 3 deletions src/conviso/commands/projects.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ def list_projects(
environmentCompromised
projectType { label }
tags { name }
allocatedAnalyst {
assignedUsers {
portalUser { name email }
}
assets { id name }
Expand All @@ -232,7 +232,7 @@ def _append_rows_from_collection(collection):
nonlocal rows
for p in collection:
assignees = []
for alloc in p.get("allocatedAnalyst") or []:
for alloc in p.get("assignedUsers") or []:
portal_user = (alloc or {}).get("portalUser") or {}
email = (portal_user.get("email") or "").strip()
name = (portal_user.get("name") or "").strip()
Expand Down Expand Up @@ -674,7 +674,7 @@ def _split_csv_str(value: Optional[str]) -> Optional[List[str]]:
endDate
estimatedHours
projectType { id label }
allocatedAnalyst {
assignedUsers {
portalUser { email }
}
}
Expand Down
Loading