This is an automated email from the ASF dual-hosted git repository.
linkinstar pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-answer-plugins.git
The following commit(s) were added to refs/heads/main by this push:
new cb97772 fix(connector-google): remove id and upgrade version
cb97772 is described below
commit cb977723306d68f154a9adf47b285ded589c18c2
Author: LinkinStars <[email protected]>
AuthorDate: Sat Jun 1 13:29:58 2024 +0800
fix(connector-google): remove id and upgrade version
---
connector-google/google.go | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/connector-google/google.go b/connector-google/google.go
index 1e5a423..16feb10 100644
--- a/connector-google/google.go
+++ b/connector-google/google.go
@@ -42,7 +42,6 @@ type ConnectorConfig struct {
}
type AuthUserInfo struct {
- ID string `json:"id"`
Sub string `json:"sub"`
Name string `json:"name"`
GivenName string `json:"given_name"`
@@ -66,7 +65,7 @@ func (g *Connector) Info() plugin.Info {
SlugName: "google_connector",
Description: plugin.MakeTranslator(i18n.InfoDescription),
Author: "answerdev",
- Version: "1.2.5",
+ Version: "1.2.6",
Link:
"https://github.com/apache/incubator-answer-plugins/tree/main/connector-google",
}
}