Skip to content

Commit

Permalink
chore: Swagger Tag 값에 Numbering (#111)
Browse files Browse the repository at this point in the history
chore: Swagger API 제목 Numbering
  • Loading branch information
char-yb authored Jan 7, 2024
1 parent 82761e9 commit d34a2df
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/java/com/depromeet/ExampleController.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@Tag(name = "health-check", description = "상태 체크")
@Tag(name = "etc. [health-check]", description = "상태 체크")
@RestController
public class ExampleController {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;

@Tag(name = "미션 API", description = "미션 관련 API입니다.")
@Tag(name = "2. [미션]", description = "미션 관련 API입니다.")
@RestController
@RequestMapping("/missions")
@RequiredArgsConstructor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@Tag(name = "[미션 기록]", description = "미션 기록 관련 API")
@Tag(name = "3. [미션 기록]", description = "미션 기록 관련 API")
@RestController
@RequestMapping("/records")
@RequiredArgsConstructor
Expand Down

0 comments on commit d34a2df

Please sign in to comment.