1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-08-05 07:03:38 +02:00

Fix osc rq -M/--mine option to show only requests created by the user

This commit is contained in:
2022-09-16 09:23:34 +02:00
parent 30d967513e
commit 584fd5e0f4

View File

@@ -2439,6 +2439,7 @@ Please submit there instead, or use --nodevelproject to force direct submission.
results = get_user_projpkgs_request_list(apiurl, who, req_state=state_list,
req_type=opts.type, exclude_projects=opts.exclude_target_project or [])
else:
roles = ["creator"] if opts.mine else None
results = get_request_collection(
apiurl, project=project, package=package, user=who,
states=state_list, types=opts.type, roles=roles)