File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
src/main/java/com/somemore/user/controller Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change 88import io .swagger .v3 .oas .annotations .Operation ;
99import io .swagger .v3 .oas .annotations .tags .Tag ;
1010import lombok .RequiredArgsConstructor ;
11- import lombok .extern .slf4j .Slf4j ;
1211import org .springframework .security .access .annotation .Secured ;
1312import org .springframework .web .bind .annotation .PutMapping ;
1413import org .springframework .web .bind .annotation .RequestBody ;
1918
2019@ Tag (name = "User Command API" , description = "유저 생성 수정 삭제 관련 API" )
2120@ RestController
22- @ Slf4j
2321@ RequiredArgsConstructor
2422@ RequestMapping ("/api/user" )
2523public class UserCommandController {
@@ -45,6 +43,6 @@ public ApiResponse<String> registerBasicInfo(
4543 @ RequestBody CenterBasicInfoRequestDto centerBasicInfoRequestDto
4644 ) {
4745 updateBasicInfoUseCase .update (userId , centerBasicInfoRequestDto );
48- return ApiResponse .ok ("센터 기본 정보 업데이틍 완료" );
46+ return ApiResponse .ok ("센터 기본 정보 업데이 완료" );
4947 }
5048}
You can’t perform that action at this time.
0 commit comments