Skip to content

Commit f86d154

Browse files
committed
fix: admin login controller tag fix
1 parent f6b3c90 commit f86d154

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/main/java/org/myteam/server/auth/controller/AdminLoginController.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,11 @@
1212

1313

1414

15-
@Tag(name = "인증 API", description = "회원가입 및 로그인 관련 API")
15+
@Tag(name = "관리자 인증 api", description = "관리자 로그인 관련 api")
1616
public class AdminLoginController {
1717
@Operation(summary = "관리자 로그인", description = "관리자가 로그인을 하여 토큰을 받습니다." +
18-
"계정은 username으로 비밀번호는 password를 프로퍼티로 보내주시면됩니다.")
18+
"계정은 username으로 비밀번호는 password를 프로퍼티로 보내주시면됩니다. 사실상 기존의 일반 회원 로그인과" +
19+
"같되 경로만 다르다고 보시면됩니다.")
1920
@ApiResponses(value = {
2021
@ApiResponse(responseCode = "200", description = "로그인 성공", content = @Content(schema = @Schema(implementation = AuthResponse.class))),
2122
@ApiResponse(responseCode = "404", description = "사용자를 찾을 수 없음", content = @Content(schema = @Schema(implementation = ErrorResponse.class))),

0 commit comments

Comments
 (0)