권한 테스트 api 수정

This commit is contained in:
2025-12-12 10:02:08 +09:00
parent 79267e82d7
commit 970d08ba44
5 changed files with 74 additions and 59 deletions

View File

@@ -88,7 +88,7 @@ public class MembersDto {
public static class SearchReq {
@Schema(
description = "전체, 관리자(ROLE_ADMIN), 라벨러(ROLE_LABELER), 검수자(ROLE_REVIEWER)",
description = "전체, 관리자(ADMIN), 라벨러(LABELER), 검수자(REVIEWER)",
example = "")
private String userRole;
@@ -111,7 +111,7 @@ public class MembersDto {
@Setter
public static class AddReq {
@Schema(description = "관리자 유형", example = "ROLE_ADMIN")
@Schema(description = "관리자 유형", example = "ADMIN")
@NotBlank
@Size(max = 50)
private String userRole;