accidentally removed DisableIssuedAtCheck during merge

This commit is contained in:
max furman 2018-10-25 00:15:17 -07:00
parent ee7db4006a
commit d2872564b4

View file

@ -75,9 +75,10 @@ type Config struct {
// AuthConfig represents the configuration options for the authority. // AuthConfig represents the configuration options for the authority.
type AuthConfig struct { type AuthConfig struct {
Provisioners []*Provisioner `json:"provisioners,omitempty"` Provisioners []*Provisioner `json:"provisioners,omitempty"`
Template *x509util.ASN1DN `json:"template,omitempty"` Template *x509util.ASN1DN `json:"template,omitempty"`
Claims *ProvisionerClaims Claims *ProvisionerClaims
DisableIssuedAtCheck bool `json:"disableIssuedAtCheck,omitempty"`
} }
// Validate validates the authority configuration. // Validate validates the authority configuration.