Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Public/Domain/func_Get-OPDomain.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,10 @@ function Get-OPDomain {
DNSSec = $domains[$i].is_dnssec_enabled
Sectigo = $domains[$i].is_sectigo_dns_enabled
NameserverGroup = $domains[$i].ns_group
OwnerHandle = $domains[$i].owner_handle
AdminHandle = $domains[$i].admin_handle
TechHandle = $domains[$i].tech_handle

}
}
$return_object += $domain_object
Expand Down
2 changes: 1 addition & 1 deletion Public/SSL/func_Get-OPSSLOrders.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function Get-OPSSLOrders {
Product = $order.product_name
Hostname = $order.common_name
Status = ($statusMap | Select-Object $($order.status)).$($order.status)
ExpirationDate = [datetime]$order.expiration_date
ExpirationDate = if ($null -ne $order.expiration_date) { [datetime]$order.expiration_date } else { $null }
Period = $order.period
AutoRenew = if ($order.autorenew -eq "on") { $true } else { $false }
ValidationMethod = $order.validation_method
Expand Down