Expose path and comments elements.

This commit is contained in:
John R. Dennison 2022-11-05 23:26:11 -05:00
parent 6345e42721
commit 9f80743da6

View File

@ -30,6 +30,8 @@ function get_cert_parameters(element, index, array) {
var options = {
hostname: element.hostname,
port: (element.port ? element.port : 443),
path: (element.path ? element.path : '/'),
comment: (element.comment ? element.comment : ''),
method: 'GET'
};