change name for function

This commit is contained in:
Valentin CZERYBA 2022-05-15 13:36:43 +02:00
parent 6c3cf5b92c
commit 4f1efd8c2e

View File

@ -40,7 +40,7 @@ public class TokenRessource {
@GET
@Produces(MediaType.APPLICATION_JSON)
public Response getUserName(@HeaderParam("Authorization") String auth, @CookieParam("user") String user, @CookieParam("jwt") String jwtCookie) {
public Response tokenRefresh(@HeaderParam("Authorization") String auth, @CookieParam("user") String user, @CookieParam("jwt") String jwtCookie) {
String name = "anonymous";
String password = "";
if(auth == null){