Skip to content

Commit

Permalink
Merge pull request #607 from tukcomCD2024/fix/typo-core-B-#604
Browse files Browse the repository at this point in the history
fix : 오타 수정 #604
  • Loading branch information
GaBaljaintheroom authored Aug 3, 2024
2 parents 3e54e24 + fd833dc commit cf2f2ec
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ ResponseEntity<ApiSpec<GroupCapsuleSliceResponse>> getGroupCapsules(
@Max(value = 40, message = "최대 페이징 크기는 40입니다.")
int size,

@Parameter(in = ParameterIn.QUERY, description = "마지막 캡슐 아이디", required = true)
@Parameter(in = ParameterIn.QUERY, description = "마지막 캡슐 아이디")
Long lastCapsuleId
);

Expand Down Expand Up @@ -151,7 +151,7 @@ ResponseEntity<ApiSpec<GroupSpecificCapsuleSliceResponse>> getGroupSpecificCapsu
@Parameter(in = ParameterIn.QUERY, description = "페이지 크기", required = true)
int size,

@Parameter(in = ParameterIn.QUERY, description = "마지막 캡슐 아이디", required = true)
@Parameter(in = ParameterIn.QUERY, description = "마지막 캡슐 아이디")
Long lastCapsuleId
);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,11 @@
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

// swagger 접속 url -> http://localhost:8080/api/swagger-ui/index.html#/

@Configuration
public class SwaggerConfig {

@Bean
public OpenAPI springShopOpenAPI() {
public OpenAPI openApi() {
return new OpenAPI()
.servers(getServers())
.info(getInfo())
Expand Down

0 comments on commit cf2f2ec

Please sign in to comment.