Skip to content
This repository was archived by the owner on Dec 9, 2025. It is now read-only.

Commit 105511b

Browse files
authored
Merge pull request #83 from appirio-tech/dev
fix token life
2 parents a01ff70 + 17eb934 commit 105511b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/appirio/tech/core/service/identity/resource/UserResource.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -882,7 +882,7 @@ public ApiResponse roles(
882882
user.getCredential().setCanResend(true);
883883
}
884884
user.getCredential().setResendToken(
885-
generateResendToken(user.getId().getId(), otpActivationAud, activationCodeExpiration));
885+
generateResendToken(user.getId().getId(), otpActivationAud, activationCodeExpiration * 60));
886886
}
887887
return ApiResponseFactory.createResponse(user);
888888
}

0 commit comments

Comments
 (0)