We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1112b1c commit 62f4a31Copy full SHA for 62f4a31
client.go
@@ -108,7 +108,8 @@ type ConfigHost struct {
108
}
109
110
type ConfigEndpointOIDC struct {
111
- Email string
+ Email string
112
+ ExpiresAt *time.Time
113
114
115
// Enroll issues an enrollment request against the REST API using the given enrollment code, passing along a locally
message/message.go
@@ -220,7 +220,8 @@ type HostHostMetadata struct {
220
221
// HostEndpointOIDCMetadata is included in EnrollResponseData.
222
type HostEndpointOIDCMetadata struct {
223
- Email string `json:"email"`
+ Email string `json:"email"`
224
+ ExpiresAt *time.Time `json:"expiresAt"`
225
226
227
// PreAuthEndpoint is called when starting an OIDC auth flow.
0 commit comments