Revize e77c14f9
Přidáno uživatelem Michal Seják před téměř 4 roky(ů)
src/controllers/certificates_controller.py | ||
---|---|---|
328 | 328 |
f"\n{dict_to_string(data)}") |
329 | 329 |
|
330 | 330 |
target_types = {ROOT_CA_ID, INTERMEDIATE_CA_ID, CERTIFICATE_ID} |
331 |
target_usages = {v for v in CertController.INVERSE_USAGE_KEY_MAP.keys()}
|
|
331 |
target_usages = None
|
|
332 | 332 |
target_cn_substring = None |
333 | 333 |
issuer_id = -1 |
334 | 334 |
|
Také k dispozici: Unified diff
Re #8706 - Fixed a bug where certificates without usages would not be returned when the usage filter was unspecified. Added a related integration test.