Skip to content

Commit fb05341

Browse files
committed
fixed autologin
1 parent 38c702a commit fb05341

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/ch/ethz/seb/sps/server/weblayer/AdminJWTAccess.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ public String getJWTToken(
4747
method = RequestMethod.POST,
4848
consumes = MediaType.APPLICATION_FORM_URLENCODED_VALUE,
4949
produces = MediaType.APPLICATION_JSON_VALUE)
50-
public AutoLoginService.LoginInfo verifyJWTToken(@RequestParam(required = true) final String loginToken) {
51-
return autoLoginService.verifyAutoLoginToken(loginToken);
50+
public AutoLoginService.LoginInfo verifyJWTToken(@RequestParam(required = true) final String logintoken) {
51+
return autoLoginService.verifyAutoLoginToken(logintoken);
5252
}
5353

5454
}

0 commit comments

Comments
 (0)