Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Oauth API prefix 수정 및 깃허브 소셜 로그인 Http Method 수정 #193

Merged
merged 2 commits into from
Aug 3, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
Expand All @@ -18,7 +17,7 @@
import static org.springframework.http.HttpStatus.FOUND;

@RequiredArgsConstructor
@RequestMapping("/oauth")
@RequestMapping("/api/v1/oauth")
@RestController
public class OauthController {

Expand All @@ -34,7 +33,7 @@ public ResponseEntity<Void> redirectAuthCode(@PathVariable("oauthType") final Oa
return ResponseEntity.status(FOUND).build();
}

@PostMapping("/login/{oauthType}")
@GetMapping("/login/{oauthType}")
public ResponseEntity<Void> login(@PathVariable final OauthType oauthType,
@RequestParam final String code
) {
Expand Down
Loading