Skip to content

Commit

Permalink
CLAP-301 Docs: 스웨거 API 태그 명세
Browse files Browse the repository at this point in the history
<footer>
- 관련: #358
  • Loading branch information
joowojr committed Feb 6, 2025
1 parent 0b12e7d commit dfce90d
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;

@Tag(name = "05. Admin")
@Tag(name = "05. Admin [작업 관리]")
@WebAdapter
@RequiredArgsConstructor
@RequestMapping("/api/managements")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;

@Tag(name = "05. Admin")
@Tag(name = "05. Admin [작업 관리]")
@WebAdapter
@RequiredArgsConstructor
@RequestMapping("/api/managements")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;

@Tag(name = "05. Admin")
@Tag(name = "05. Admin [회원 관리]")
@WebAdapter
@RequiredArgsConstructor
@RequestMapping("/api/managements")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

import java.util.List;

@Tag(name = "05. Admin")
@Tag(name = "05. Admin [회원 관리]")
@WebAdapter
@RequiredArgsConstructor
@RequestMapping("/api/managements")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import clap.server.adapter.inbound.web.dto.common.PageResponse;
import clap.server.application.port.inbound.admin.FindMembersWithFilterUsecase;

import clap.server.common.annotation.architecture.WebAdapter;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.Parameter;
import io.swagger.v3.oas.annotations.tags.Tag;
Expand All @@ -16,7 +17,8 @@
import org.springframework.security.access.annotation.Secured;
import org.springframework.web.bind.annotation.*;

@RestController
@Tag(name = "05. Admin [회원 관리]")
@WebAdapter
@RequestMapping("/api/managements")
@RequiredArgsConstructor
public class FindMemberController {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import org.springframework.security.core.annotation.AuthenticationPrincipal;
import org.springframework.web.bind.annotation.*;

@Tag(name = "05. Admin")
@Tag(name = "05. Admin [작업 관리]")
@WebAdapter
@RequiredArgsConstructor
@RequestMapping("/api/managements/labels")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;

@Tag(name = "05. Admin")
@Tag(name = "05. Admin [회원 관리]")
@WebAdapter
@RequestMapping("/api/managements")
@RequiredArgsConstructor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

import java.io.IOException;

@Tag(name = "05. Admin")
@Tag(name = "05. Admin [회원 관리]")
@WebAdapter
@RequestMapping("/api/managements")
public class RegisterMemberCsvController {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import org.springframework.security.access.annotation.Secured;
import org.springframework.web.bind.annotation.*;

@Tag(name = "05. Admin")
@Tag(name = "05. Admin [회원 관리]")
@WebAdapter
@RequiredArgsConstructor
@RequestMapping("/api/managements")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;

@Tag(name = "05. Admin")
@Tag(name = "05. Admin [작업 관리]")
@WebAdapter
@RequiredArgsConstructor
@RequestMapping("/api/managements")
Expand Down

0 comments on commit dfce90d

Please sign in to comment.