Correct team iterator lists in worklist creation
The team_get() method needs to iterate over our list of team owners and team users, so pass in elements from the correct list names. Change-Id: I7b18378577e818989fc89118d6b1d947cc7a5682
This commit is contained in:
parent
07098d17ba
commit
dd39dc1b23
@ -798,11 +798,11 @@ class WorklistsController(rest.RestController):
|
||||
event_owners = [{id: users_api.user_get(id).full_name}
|
||||
for id in owners]
|
||||
event_team_owners = [{id: teams_api.team_get(id).name}
|
||||
for id in owners]
|
||||
for id in team_owners]
|
||||
event_users = [{id: users_api.user_get(id).full_name}
|
||||
for id in users]
|
||||
event_team_users = [{id: teams_api.team_get(id).name}
|
||||
for id in users]
|
||||
for id in team_users]
|
||||
events_api.worklist_permission_created_event(created_worklist.id,
|
||||
user_id,
|
||||
edit.id,
|
||||
|
Loading…
x
Reference in New Issue
Block a user