This is an automated email from the ASF dual-hosted git repository. linkinstar pushed a commit to branch fix/connector-google in repository https://gitbox.apache.org/repos/asf/incubator-answer-plugins.git
commit 81dd2490db966e386b1f7394e9ef1039c1c65db5 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", } }
