Skip to content

Commit

Permalink
fix: bug with application config create registration
Browse files Browse the repository at this point in the history
  • Loading branch information
MCBrandenburg committed Sep 17, 2020
1 parent 12eb1e2 commit 19a1445
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fusionauth/resource_fusionauth_idp_google.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ type GoogleAppConfig struct {
ClientID string `json:"client_id,omitempty"`
ClientSecret string `json:"client_secret,omitempty"`
Scope string `json:"scope,omitempty"`
CreateRegistration bool `json:"createRegistration,omitempty"`
CreateRegistration bool `json:"createRegistration"`
Enabled bool `json:"enabled,omitempty"`
}

Expand Down
2 changes: 1 addition & 1 deletion fusionauth/resource_fusionauth_idp_open_id_connect.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ type OpenIDAppConfig struct {
ButtonImageURL string `json:"buttonImageURL,omitempty"`
ButtonText string `json:"buttonText,omitempty"`
OAuth2 OAuth2AppConfig `json:"oauth2,omitempty"`
CreateRegistration bool `json:"createRegistration,omitempty"`
CreateRegistration bool `json:"createRegistration"`
Enabled bool `json:"enabled,omitempty"`
}

Expand Down

0 comments on commit 19a1445

Please sign in to comment.