Skip to content

Commit b114d2a

Browse files
committed
Fixed JWTHelper
1 parent f855c19 commit b114d2a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/de/dhbw2go/backend/security/jwt/JWTHelper.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ public class JWTHelper {
2020

2121
private static final Logger logger = LoggerFactory.getLogger(JWTHelper.class);
2222
private static final Key key = Keys.secretKeyFor(SignatureAlgorithm.HS256);
23-
@Value("${youandmeme.jwt.cookie}")
23+
@Value("${dhbw2go.jwt.cookie}")
2424
private String jwtCookie;
25-
@Value("${youandmeme.jwt.expiration}")
25+
@Value("${dhbw2go.jwt.expiration}")
2626
private int jwtExpiration;
2727

2828
public String getJWTFromCookies(final HttpServletRequest httpServletRequest) {

0 commit comments

Comments
 (0)