Skip to content
Snippets Groups Projects

get cert count from cert meta

Merged Hugo Trentesaux requested to merge hugo/fix-cert-count into master
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
+ 2
2
@@ -330,9 +330,9 @@ pub async fn get_identity(
let smith = get_smith(client, index).await?;
let smith = smith.map(|s| SmithView {
status: s.status,
cert_issued_count: smith_cert_issued.len(),
cert_issued_count: s.issued_certs.len(),
cert_issued: smith_cert_issued,
cert_received_count: smith_cert_received.len(),
cert_received_count: s.received_certs.len(),
cert_received: smith_cert_received,
});
Loading