Skip to content

Commit 0b1b608

Browse files
remove signed in notification from complete signup action (#15)
1 parent e971765 commit 0b1b608

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

actions.go

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -443,12 +443,6 @@ func (server *ServerStruct) completeSignupAction(actionInvocationId string, sign
443443
return actionSessionStruct{}, "", newActionError(errorCodeSessionNotCreated)
444444
}
445445

446-
err = server.emailSender.SendUserSignedInNotification(user.EmailAddress, user.DisplayName, session.createdAt)
447-
if err != nil {
448-
errorMessage := fmt.Sprintf("failed to send signed in notification email: %s", err.Error())
449-
server.errorLogger.LogActionError(server.clock.Now(), errorMessage, actionInvocationId, ActionCompleteSignup)
450-
}
451-
452446
actionSession := server.createActionSession(session)
453447

454448
return actionSession, sessionToken, nil

0 commit comments

Comments
 (0)