Skip to content

Commit

Permalink
Ready for Review
Browse files Browse the repository at this point in the history
Signed-off-by: Łukasz Gryglicki <[email protected]>
  • Loading branch information
lukaszgryglicki committed Dec 5, 2024
1 parent 7aa75a8 commit 9442e3a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
13 changes: 6 additions & 7 deletions cla-backend-go/signatures/repository.go
Original file line number Diff line number Diff line change
Expand Up @@ -4545,13 +4545,12 @@ func (repo repository) getIntermediateICLAResponse(f logrus.Fields, dbSignatures

intermediateResponse = append(intermediateResponse, &iclaSignatureWithDetails{
IclaSignature: &models.IclaSignature{
GithubUsername: sig.UserGithubUsername,
GitlabUsername: sig.UserGitlabUsername,
UserID: sig.SignatureReferenceID,
LfUsername: sig.UserLFUsername,
SignatureApproved: sig.SignatureApproved,
SignatureSigned: sig.SignatureSigned,
// SignatureEmbargoAcked: sig.SignatureEmbargoAcked,
GithubUsername: sig.UserGithubUsername,
GitlabUsername: sig.UserGitlabUsername,
UserID: sig.SignatureReferenceID,
LfUsername: sig.UserLFUsername,
SignatureApproved: sig.SignatureApproved,
SignatureSigned: sig.SignatureSigned,
SignatureEmbargoAcked: true,
SignatureModified: sig.DateModified,
SignatureID: sig.SignatureID,
Expand Down
2 changes: 1 addition & 1 deletion utils/request_corporate_signature_go_post.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ then
fi

if [ -z "$TOKEN" ]
then
then
echo "$0: TOKEN not specified and unable to obtain one"
exit 1
fi
Expand Down

0 comments on commit 9442e3a

Please sign in to comment.