Skip to content

Commit

Permalink
fix: incorrect parameter order
Browse files Browse the repository at this point in the history
  • Loading branch information
ThanGerlek committed Nov 17, 2024
1 parent e2b2431 commit 2d5479d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/edu/byu/cs/controller/CasController.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public class CasController {
}

// TODO: call cas logout endpoint with ticket
ctx.removeCookie("/", "token");
ctx.removeCookie("token", "/");
ctx.redirect(ApplicationProperties.frontendUrl(), HttpStatus.OK);
};

Expand Down

0 comments on commit 2d5479d

Please sign in to comment.