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:
Pavel Vomacka 2017-02-28 14:00:35 +01:00 committed by Tomas Krizek
parent a06c71b126
commit aa8530b7af
No known key found for this signature in database
GPG Key ID: 22A2A94B5E49415A
4 changed files with 4 additions and 0 deletions

View File

@ -494,6 +494,7 @@ IPA.host.details_facet = function(spec, no_init) {
retry: false,
options: {
host: [ pkey ],
sizelimit: 0,
all: true
}
});

View File

@ -435,6 +435,7 @@ idviews.id_override_user_details_facet = function(spec) {
retry: false,
options: {
idoverrideuser: [ pkey ],
sizelimit: 0,
all: true
}
});

View File

@ -475,6 +475,7 @@ IPA.service.details_facet = function(spec, no_init) {
retry: false,
options: {
service: [ pkey ],
sizelimit: 0,
all: true
}
});

View File

@ -598,6 +598,7 @@ IPA.user.details_facet = function(spec, no_init) {
retry: false,
options: {
user: [ pkey ],
sizelimit: 0,
all: true
}
});