We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f855c19 commit b114d2aCopy full SHA for b114d2a
src/main/java/de/dhbw2go/backend/security/jwt/JWTHelper.java
@@ -20,9 +20,9 @@ public class JWTHelper {
20
21
private static final Logger logger = LoggerFactory.getLogger(JWTHelper.class);
22
private static final Key key = Keys.secretKeyFor(SignatureAlgorithm.HS256);
23
- @Value("${youandmeme.jwt.cookie}")
+ @Value("${dhbw2go.jwt.cookie}")
24
private String jwtCookie;
25
- @Value("${youandmeme.jwt.expiration}")
+ @Value("${dhbw2go.jwt.expiration}")
26
private int jwtExpiration;
27
28
public String getJWTFromCookies(final HttpServletRequest httpServletRequest) {
0 commit comments