瀏覽代碼

social: gitlab_oauth: set user ID in case email changes

Set `BasicUserInfo.Id` in the value returned by
`SocialGitlab.UserInfo()`, in case the email address of the user changes
in GitLab. That way, the user association won't be lost in Grafana.
Benoît Knecht 7 年之前
父節點
當前提交
ce804e9981
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      pkg/social/gitlab_oauth.go

+ 1 - 0
pkg/social/gitlab_oauth.go

@@ -118,6 +118,7 @@ func (s *SocialGitlab) UserInfo(client *http.Client, token *oauth2.Token) (*Basi
 	}
 
 	userInfo := &BasicUserInfo{
+		Id:    fmt.Sprintf("%d", data.Id),
 		Name:  data.Name,
 		Login: data.Username,
 		Email: data.Email,