We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
user.readOnlyData의 isfollow: false값을 가져오게 되면서 계속해서 isfollow값이 false로 옴
user.readOnlyData
isfollow: false
isfollow
user id를 follower배열에서 찾아서 결과값을 리턴해주는 getUserByAccountNameResponse를 사용
follower
getUserByAccountNameResponse
async getUserByAccountNameResponse( accountname: string, currUserId: string, ): Promise<ProfileResponse> { const user = await this.getUserByAccountName(accountname); return { ...user.readOnlyData, isfollow: getIsFollow(user, currUserId), };
The text was updated successfully, but these errors were encountered:
d-charlie-kim
No branches or pull requests
user.readOnlyData
의isfollow: false
값을 가져오게 되면서 계속해서isfollow
값이 false로 옴해결
user id를
follower
배열에서 찾아서 결과값을 리턴해주는getUserByAccountNameResponse
를 사용The text was updated successfully, but these errors were encountered: