File tree Expand file tree Collapse file tree
src/main/java/com/example/solidconnection/auth/controller Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2626import lombok .RequiredArgsConstructor ;
2727import org .springframework .http .ResponseEntity ;
2828import org .springframework .security .core .Authentication ;
29- import org .springframework .web .bind .annotation .PatchMapping ;
29+ import org .springframework .web .bind .annotation .DeleteMapping ;
3030import org .springframework .web .bind .annotation .PostMapping ;
3131import org .springframework .web .bind .annotation .RequestBody ;
3232import org .springframework .web .bind .annotation .RequestMapping ;
@@ -102,7 +102,7 @@ public ResponseEntity<Void> signOut(
102102 return ResponseEntity .ok ().build ();
103103 }
104104
105- @ PatchMapping ("/quit" )
105+ @ DeleteMapping ("/quit" )
106106 public ResponseEntity <Void > quit (
107107 @ AuthorizedUser SiteUser siteUser ,
108108 Authentication authentication // todo: #299를 작업하며 인자를 (Authentication authentication)만 받도록 수정해야 함
You can’t perform that action at this time.
0 commit comments