Skip to content

Commit

Permalink
fix: Code Dependencies Fixes after Refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
Tejas-2810 committed Nov 26, 2023
1 parent 821acb4 commit d463fbf
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@
import javax.crypto.BadPaddingException;
import javax.crypto.IllegalBlockSizeException;
import javax.crypto.NoSuchPaddingException;

import com.nonononoki.alovoa.service.AuthService;
import jakarta.servlet.http.Cookie;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
Expand Down Expand Up @@ -209,6 +211,6 @@ public void getRememberMeCookie(@PathVariable String rememberCookieValue, @PathV
}

private String getOauthParams(String username, String firstName, int page) {
return Tools.getAuthParams(securityConfig, httpSession.getId(), username, firstName, page);
return AuthService.getAuthParams(securityConfig, httpSession.getId(), username, firstName, page);
}
}

0 comments on commit d463fbf

Please sign in to comment.