Skip to content

Commit 36d9aa1

Browse files
committed
feat: redirect ctl 추가
1 parent 98ca898 commit 36d9aa1

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
package org.muses.backendbulidtest251228.domain.member.controller;
2+
3+
import org.springframework.http.ResponseEntity;
4+
import org.springframework.web.bind.annotation.GetMapping;
5+
import org.springframework.web.bind.annotation.RestController;
6+
7+
@RestController
8+
public class AuthRedirectCTL {
9+
@GetMapping("/auth/callback")
10+
public ResponseEntity<String> handleCallback() {
11+
return ResponseEntity.ok("인증 콜백 페이지입니다. URL의 토큰을 확인하세요.");
12+
}
13+
}

0 commit comments

Comments
 (0)