Skip to content

Commit

Permalink
fix: 어노테이션 오류 수정 (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
gardening-y committed Jan 7, 2024
1 parent 8bd323e commit 0d56621
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@
import org.doorip.user.dto.response.UserResponse;
import org.doorip.user.service.UserService;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.*;

@RequiredArgsConstructor
@RequestMapping("/api/users")
@RestController
@Controller
public class UserApiController {
private final UserService userService;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ public class UserService {
private final AppleOAuthProvider appleOAuthProvider;
private final KakaoOAuthProvider kakaoOAuthProvider;

@Transactional
public UserResponse signIn(String token, UserSignInRequest request) {
Platform enumPlatform = getEnumPlatformFromStringPlatform(request.platform());
String platformId = getPlatformId(token, enumPlatform);
Expand Down

0 comments on commit 0d56621

Please sign in to comment.