remove version (#3184)

This commit is contained in:
Caleb Doxsey 2022-03-23 11:51:24 -06:00 committed by GitHub
parent 956febf6a6
commit 7d00ad9b7d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 8 additions and 45 deletions

View file

@ -26,7 +26,6 @@ type UserInfoData struct {
WebAuthnCreationOptions *webauthn.PublicKeyCredentialCreationOptions
WebAuthnRequestOptions *webauthn.PublicKeyCredentialRequestOptions
WebAuthnURL string
PomeriumVersion string
}
// ToJSON converts the data into a JSON map.
@ -53,7 +52,6 @@ func (data UserInfoData) ToJSON() map[string]interface{} {
m["webAuthnCreationOptions"] = data.WebAuthnCreationOptions
m["webAuthnRequestOptions"] = data.WebAuthnRequestOptions
m["webAuthnUrl"] = data.WebAuthnURL
m["pomeriumVersion"] = data.PomeriumVersion
return m
}