Skip to content

Commit 0475247

Browse files
committed
feat/#20 외부 상품 마스터 데이터 적재 기능 분리 및 사용자 옷장 로직 제거
1 parent e98b928 commit 0475247

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

src/main/java/com/closetnangam/be/global/common/controller/MockAuthController.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
import com.closetnangam.be.global.auth.jwt.JwtTokenProvider;
44
import io.swagger.v3.oas.annotations.Operation;
55
import io.swagger.v3.oas.annotations.tags.Tag;
6+
import org.springframework.context.annotation.Profile;
67
import org.springframework.http.ResponseEntity;
78
import org.springframework.web.bind.annotation.GetMapping;
89
import org.springframework.web.bind.annotation.RequestMapping;
@@ -15,6 +16,7 @@
1516
@Tag(name = "Mock Auth", description = "개발용 임시 인증 API")
1617
@RestController
1718
@RequestMapping("/api/v1/auth")
19+
@Profile("local")
1820
public class MockAuthController {
1921

2022
private final JwtTokenProvider jwtTokenProvider;

0 commit comments

Comments
 (0)