fix(member): getMemberInfo 응답 role을 CREATOR 외에는 USER로 매핑

This commit is contained in:
2026-05-01 15:21:05 +09:00
parent 343dee1f6c
commit dfb97fba80

View File

@@ -252,7 +252,7 @@ class MemberService(
gender = gender,
signupDate = signUpDate,
chargeCount = chargeCount,
role = member.role,
role = if (member.role == MemberRole.CREATOR) MemberRole.CREATOR else MemberRole.USER,
messageNotice = member.notification?.message,
followingChannelLiveNotice = member.notification?.live,
followingChannelUploadContentNotice = member.notification?.uploadContent,