mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-23 15:40:01 -06:00
WebUI: add sizelimit:0 to cert-find
It was not possible to get all arbitrary certificates which were added using {user|host|service|idview}-add-cert method. Adding sizelimit:0 to this cert-find command fix the issue. It set sizelimit to unlimited. https://pagure.io/freeipa/issue/6712 Reviewed-By: Petr Vobornik <pvoborni@redhat.com> Reviewed-By: Florence Blanc-Renaud <frenaud@redhat.com>
This commit is contained in:
parent
a06c71b126
commit
aa8530b7af
@ -494,6 +494,7 @@ IPA.host.details_facet = function(spec, no_init) {
|
||||
retry: false,
|
||||
options: {
|
||||
host: [ pkey ],
|
||||
sizelimit: 0,
|
||||
all: true
|
||||
}
|
||||
});
|
||||
|
@ -435,6 +435,7 @@ idviews.id_override_user_details_facet = function(spec) {
|
||||
retry: false,
|
||||
options: {
|
||||
idoverrideuser: [ pkey ],
|
||||
sizelimit: 0,
|
||||
all: true
|
||||
}
|
||||
});
|
||||
|
@ -475,6 +475,7 @@ IPA.service.details_facet = function(spec, no_init) {
|
||||
retry: false,
|
||||
options: {
|
||||
service: [ pkey ],
|
||||
sizelimit: 0,
|
||||
all: true
|
||||
}
|
||||
});
|
||||
|
@ -598,6 +598,7 @@ IPA.user.details_facet = function(spec, no_init) {
|
||||
retry: false,
|
||||
options: {
|
||||
user: [ pkey ],
|
||||
sizelimit: 0,
|
||||
all: true
|
||||
}
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user