Merge pull request #560 from nilxam/ignore_add_role
Ignore add_role request in the list command
This commit is contained in:
commit
990d9ea6a1
@ -40,6 +40,10 @@ class ListCommand:
|
|||||||
# Where are we targeting the package
|
# Where are we targeting the package
|
||||||
target_package = action.find('target').get('package')
|
target_package = action.find('target').get('package')
|
||||||
|
|
||||||
|
# ignore add_role requests
|
||||||
|
if action.get('type') == 'add_role':
|
||||||
|
continue
|
||||||
|
|
||||||
# handle change_devel requests
|
# handle change_devel requests
|
||||||
if action.get('type') == 'change_devel':
|
if action.get('type') == 'change_devel':
|
||||||
change_devel_requests[target_package] = request_id
|
change_devel_requests[target_package] = request_id
|
||||||
|
Loading…
x
Reference in New Issue
Block a user