feat(creator-admin login): AGENT 권한을 가진 유저도 로그인이 가능하도록 수정

This commit is contained in:
2026-04-13 16:04:21 +09:00
parent 46b282a817
commit f740041dca

View File

@@ -70,7 +70,7 @@ class CreatorAdminMemberService(
throw SodaException(messageKey = "creator.admin.member.inactive_account")
}
if (member.role != MemberRole.CREATOR) {
if (member.role != MemberRole.CREATOR && member.role != MemberRole.AGENT) {
throw SodaException(messageKey = "common.error.bad_credentials")
}