Skip to content
Snippets Groups Projects
Commit ea9d1466 authored by 세현 임's avatar 세현 임
Browse files

[#%{taskTitle}] 간단한 주석수정

parents f8d1b246 398060dc
No related branches found
No related tags found
1 merge request!31Develop
......@@ -69,8 +69,7 @@ class FriendService {
]
});
// 디버깅을 위해 로그 추가
//console.log('FriendRequestWithDetails:', friendRequestWithDetails.toJSON());
return new FriendRequestDTO(friendRequestWithDetails.toJSON());
} catch (error) {
......@@ -214,13 +213,11 @@ class FriendService {
attributes: ['id', 'name', 'email']
}
],
order: [['id', 'ASC']], // 일관된 정렬 순서 추가
order: [['id', 'ASC']],
limit,
offset
});
// 디버깅을 위해 로그 추가
//console.log(`getFriendList: Retrieved ${friends.length} friends with limit=${limit} and offset=${offset}`);
return friends.map(friend => new FriendListDTO(friend, userId));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment