PLT-3584 Fix no team found when creating account (#3552)

Этот коммит содержится в:
enahum
2016-07-13 13:13:13 -04:00
коммит произвёл Corey Hulen
родитель 2a0288f110
Коммит 8346bfec37

Просмотреть файл

@@ -2543,7 +2543,9 @@ func completeSaml(c *Context, w http.ResponseWriter, r *http.Request) {
switch action {
case model.OAUTH_ACTION_SIGNUP:
teamId := relayProps["team_id"]
go addDirectChannels(teamId, user)
if len(teamId) > 0 {
go addDirectChannels(teamId, user)
}
break
case model.OAUTH_ACTION_EMAIL_TO_SSO:
RevokeAllSession(c, user.Id)