Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@Tag(name = "Ad API", description = "클라이언트 광고 노출 및 이벤트 API")
@Tag(name = "Ads API", description = "클라이언트 광고 노출 및 이벤트 API")
@RestController
@RequiredArgsConstructor
@RequestMapping("${api_prefix}/ad")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@Tag(name = "Announcement API", description = "서비스 공지사항 조회 API")
@Tag(name = "Announcements API", description = "서비스 공지사항 조회 API")
@RestController
@RequiredArgsConstructor
@RequestMapping("${api_prefix}/announcements")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
import org.springframework.security.core.annotation.AuthenticationPrincipal;
import org.springframework.web.bind.annotation.*;

@Tag(name = "Auth API", description = "소셜 인증 관련 API")
@Tag(name = "Authentication API", description = "소셜 인증 관련 API")
@RestController
@RequiredArgsConstructor
@RequestMapping("${api_prefix}/auth/")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
@RestController
@RequestMapping("${api_prefix}/local/")
@RequiredArgsConstructor
@Tag(name = "로컬 테스트", description = "로컬 개발환경 전용 API")
@Tag(name = "Local Test API", description = "로컬 개발환경 전용 API")
public class LocalAuthController {

private final LocalLoginService localLoginService;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import org.springframework.security.core.annotation.AuthenticationPrincipal;
import org.springframework.web.bind.annotation.*;

@Tag(name = "BirdID Suggestion API", description = "조류 ID 동정 의견 관련 API")
@Tag(name = "Bird ID Suggestions API", description = "조류 ID 동정 의견 관련 API")
@RestController
@RequiredArgsConstructor
@RequestMapping("${api_prefix}/collections")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import org.springframework.security.core.annotation.AuthenticationPrincipal;
import org.springframework.web.bind.annotation.*;

@Tag(name = "Collection Comment API", description = "컬렉션 댓글 관련 API")
@Tag(name = "Collection Comments API", description = "컬렉션 댓글 관련 API")
@RestController
@RequiredArgsConstructor
@RequestMapping("${api_prefix}/collections")
Expand Down Expand Up @@ -151,4 +151,4 @@ public GetCollectionCommentCountResponse getCommentCount(
) {
return commentQueryService.getCommentCount(collectionId);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import org.springframework.security.core.annotation.AuthenticationPrincipal;
import org.springframework.web.bind.annotation.*;

@Tag(name = "Collection Comment API", description = "컬렉션 댓글 관련 API")
@Tag(name = "Collection Comments API", description = "컬렉션 댓글 관련 API")
@RestController
@RequiredArgsConstructor
@RequestMapping("${api_prefix}/collections/comments")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import org.springframework.security.core.annotation.AuthenticationPrincipal;
import org.springframework.web.bind.annotation.*;

@Tag(name = "Collection Comment API", description = "컬렉션 댓글 관련 API")
@Tag(name = "Collection Comments API", description = "컬렉션 댓글 관련 API")
@RestController
@RequiredArgsConstructor
@RequestMapping("${api_prefix}/collections")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import org.springframework.security.core.annotation.AuthenticationPrincipal;
import org.springframework.web.bind.annotation.*;

@Tag(name = "FreeBoard Comment API", description = "자유게시판 댓글 관련 API")
@Tag(name = "Free Board API", description = "자유게시판 관련 API")
@RestController
@RequiredArgsConstructor
@RequestMapping("${api_prefix}/community/freeboard/posts")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import org.springframework.security.core.annotation.AuthenticationPrincipal;
import org.springframework.web.bind.annotation.*;

@Tag(name = "FreeBoard API", description = "자유게시판 관련 API")
@Tag(name = "Free Board API", description = "자유게시판 관련 API")
@RestController
@RequiredArgsConstructor
@RequestMapping("${api_prefix}/community/freeboard/posts")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import java.time.LocalDateTime;
import java.util.List;

@Tag(name = "User Block API", description = "사용자 차단 API (Mock)")
@Tag(name = "User Blocks API", description = "사용자 차단 API (Mock)")
@RestController
@PreAuthorize("permitAll()")
@RequestMapping("${api_prefix}/users/blocks")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
import org.springframework.security.core.annotation.AuthenticationPrincipal;
import org.springframework.web.bind.annotation.*;

@Tag(name = "Notification API", description = "알림 관련 API")
@Tag(name = "Notifications API", description = "알림 관련 API")
@RestController
@RequiredArgsConstructor
@RequestMapping("${api_prefix}/notifications")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
import org.springframework.security.core.annotation.AuthenticationPrincipal;
import org.springframework.web.bind.annotation.*;

@Tag(name = "Notification API", description = "알림 관련 API")
@Tag(name = "Notifications API", description = "알림 관련 API")
@RestController
@RequiredArgsConstructor
@RequestMapping("${api_prefix}/notifications/settings")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import org.springframework.security.core.annotation.AuthenticationPrincipal;
import org.springframework.web.bind.annotation.*;

@Tag(name = "Notification API", description = "알림 관련 API")
@Tag(name = "Notifications API", description = "알림 관련 API")
@RestController
@RequiredArgsConstructor
@RequestMapping("${api_prefix}/notifications/tokens")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import org.springframework.security.core.annotation.AuthenticationPrincipal;
import org.springframework.web.bind.annotation.*;

@Tag(name = "Profile API", description = "사용자 프로필 조회")
@Tag(name = "Profiles API", description = "사용자 프로필 조회")
@RestController
@RequiredArgsConstructor
@RequestMapping("${api_prefix}/profile")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import org.springframework.web.bind.annotation.*;
import org.springframework.http.HttpStatus;

@Tag(name = "User API", description = "회원 정보 관련 API")
@Tag(name = "Users API", description = "회원 정보 관련 API")
@RestController
@RequiredArgsConstructor
@RequestMapping("${api_prefix}/user/")
Expand Down
9 changes: 8 additions & 1 deletion src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,11 @@ notification-batch:
max-batches-per-tick: 300

springdoc:
use-fqn: true
use-fqn: true
paths-to-exclude:
- ${api_prefix}/admin/**
swagger-ui:
tags-sorter: alpha
operations-sorter: method
doc-expansion: list
filter: true
Loading