Skip to content

Commit

Permalink
fix: 프로필 컨셉 전체 조회 기능 - 권한 없이 호출 가능하도록 변경 #32
Browse files Browse the repository at this point in the history
  • Loading branch information
PgmJun committed Jan 29, 2024
1 parent 3a0ac25 commit 2807424
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import com.nice.petudio.api.controller.concept.dto.ConceptDetailResponse;
import com.nice.petudio.api.controller.concept.dto.ConceptsRetrieveResponse;
import com.nice.petudio.api.controller.concept.service.ConceptCommandService;
import com.nice.petudio.api.controller.concept.service.ConceptQueryService;
import com.nice.petudio.api.dto.ApiResponse;
import com.nice.petudio.common.auth.auth.Auth;
Expand All @@ -20,10 +19,8 @@
@RequiredArgsConstructor
public class ConceptController {
private final ConceptQueryService conceptQueryService;
private final ConceptCommandService conceptCommandService;

@Auth
@Operation(summary = "[인증] AI 프로필 컨셉 전체 조회")
@Operation(summary = "AI 프로필 컨셉 전체 조회")
@ResponseStatus(HttpStatus.OK)
@GetMapping("/concepts")
public ApiResponse<ConceptsRetrieveResponse> getAllConceptsInfo() {
Expand Down

0 comments on commit 2807424

Please sign in to comment.