Skip to content

Commit

Permalink
Merge pull request #4198 from nickmango/docusign-callback-url
Browse files Browse the repository at this point in the history
Docusign Callback URL
  • Loading branch information
nickmango authored Nov 29, 2023
2 parents ac83188 + f2e59da commit 2e6a248
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions cla-backend-go/v2/sign/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -939,11 +939,7 @@ func (s *service) getIndividualSignatureCallbackURL(ctx context.Context, userID
return "", err
}

baseURL := "https://7de6-197-221-137-205.ngrok-free.app"

callbackURL := fmt.Sprintf("%s/v4/signed/individual/%d/%s/%s", baseURL, installationId, repositoryID, pullRequestID)

log.WithFields(f).Debugf("callback url: %s", callbackURL)
callbackURL := fmt.Sprintf("%s/v4/signed/individual/%d/%s/%s", s.ClaV4ApiURL, installationId, repositoryID, pullRequestID)

return callbackURL, nil

Expand Down

0 comments on commit 2e6a248

Please sign in to comment.