From 743c60328b246244818b7b4133786106de74e885 Mon Sep 17 00:00:00 2001 From: ale <ale@incal.net> Date: Mon, 13 Sep 2021 18:32:35 +0100 Subject: [PATCH] Add comment field to Webauthn type --- ldap/compositetypes/composite_types.go | 1 + 1 file changed, 1 insertion(+) diff --git a/ldap/compositetypes/composite_types.go b/ldap/compositetypes/composite_types.go index 51437c9..326441a 100644 --- a/ldap/compositetypes/composite_types.go +++ b/ldap/compositetypes/composite_types.go @@ -115,6 +115,7 @@ func UnmarshalEncryptedKey(s string) (*EncryptedKey, error) { type U2FRegistration struct { KeyHandle []byte `json:"key_handle"` PublicKey []byte `json:"public_key"` + Comment string `json:"comment"` Legacy bool `json:"-"` } -- GitLab