Skip to content

Commit

Permalink
fix: signout should be a post request instead of a get request
Browse files Browse the repository at this point in the history
  • Loading branch information
HadiKhai committed Oct 16, 2024
1 parent 1f588db commit 6649588
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/vc-api/src/api/auth/auth.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export class AuthController {
}

@UseGuards(JwtGuard)
@Get('signout')
@Post('signout')
async signOut(
@Req() req: Request,
@Res() res: Response
Expand Down

0 comments on commit 6649588

Please sign in to comment.