-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat: 공연 예매/지원자 통계 조회 API #91
Conversation
GraphResponse graph, | ||
@Schema(description = "총 수입", example = "1000000") | ||
Long totalIncome | ||
) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
하나의 클래스로 관련된 DTO를 관리하니까 프로젝트 구조가 간결해지는 것 같습니다
배워갑니다!!
@@ -50,6 +51,8 @@ public SecurityFilterChain filterChain(HttpSecurity http) throws Exception { | |||
); | |||
http.authorizeHttpRequests((authorize) -> authorize | |||
.requestMatchers( "/api-docs/**", "/swagger-ui/**", "/swagger-ui.html/**", "/v3/api-docs/**", "/swagger-ui/index.html#/**").permitAll() | |||
.requestMatchers(HttpMethod.GET, "/v1/admin/tickets/**").permitAll() | |||
.requestMatchers(HttpMethod.GET, "/v1/admin/apply/**").permitAll() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
혹시 GET 메서드 요청에 대해 permitAll() 설정을 적용하신 이유가 있을까요?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
공연정보/지원정보 조회에 대해서만 permitAll 설정을 해둔다는게 엔드포인트를 잘못작성했네요 수정하겠습니다!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
코드 구성이 잘 되어있어서 보기에도 편합니다. 수고많으셨습니당 !!
#️⃣연관된 이슈
📝작업 내용
스크린샷 (선택)
💬리뷰 요구사항(선택)