mirror of
https://github.com/ansible/awx.git
synced 2026-01-09 23:12:08 -03:30
Merge pull request #281 from jaredevantabor/filter-superusers-from-permissions1
filtering out super users from permissions lists
This commit is contained in:
commit
32fea6ef19
@ -174,7 +174,8 @@ function LegacyCredentialsService (pathService) {
|
||||
user_search: {
|
||||
value: {
|
||||
order_by: 'username',
|
||||
page_size: 5
|
||||
page_size: 5,
|
||||
is_superuser: false
|
||||
},
|
||||
dynamic: true
|
||||
},
|
||||
|
||||
@ -351,7 +351,7 @@ function($injector, $stateExtender, $log, i18n) {
|
||||
url: '/add-permissions',
|
||||
params: {
|
||||
user_search: {
|
||||
value: { order_by: 'username', page_size: '5' },
|
||||
value: { order_by: 'username', page_size: '5', is_superuser: false },
|
||||
dynamic: true,
|
||||
},
|
||||
team_search: {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user