-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
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
feat: list 명령어 구현 (현 서버의 모든 유저 보여주기) #39
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
좋은 기능 감사합니다! 프로필 공개 여부에 따라 해당 정보를 불러올 지 말지 또한 결정하면 좋을 것 같아요.
const userInfo = users.map(user => { | ||
return `백준 아이디: ${user.boj_id} | 매일 알림 시간: ${formatDailyTime(user.daily_time)}`; | ||
}).join('\n') | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
큰 문제가 될 것 같지는 않습니다만, 혹시라도 자신의 백준 정보 공개를 원치 않는 사람들이 있을까봐 조금은 걱정이 되네요. (티어 공개 원하지 않거나, private하게 사용하고 싶은 사람들 등...)
만약 이 기능을 추가한다면 등록할 시 프로필 공개 여부를 넣어야 할 것 같습니다.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
네, 저도 이 기능을 추가하고 뒤늦게 생각한건데... 사실 DB 구조를 많이 바꿔야 될 것 같습니다. 이 PR 은 일단 클로즈하고, 디자인을 조금 다시 잡으면 좋을 것 같다는 생각을 했습니다 😄
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
맞아요 사실 정말 주먹구구식으로 만들다보니 놓친 점이 한 두가지가 아니었어요😅 현재 백준봇 v2를 만들고 있는데 올려주신 pr 참고해서 반영하도록 하겠습니다 감사합니다!
@@ -127,6 +127,20 @@ export class MongoUtil{ | |||
} | |||
} | |||
|
|||
static async findAllUserInGuild(guildId: string): Promise<any>{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Discord에서 Guild의 경우는 일종의 워크스페이스 전체를 지칭하는 단위라, 같은 그룹 내 타 채널에서 봇을 사용하는 유저 정보까지 모조리 불러올 것 같아요.
이 부분은 어떻게 생각하시나요?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
제가 discord sdk 에 대한 이해가 조금 부족했던 것 같네요. 수정해야 될 부분으로 보입니다. (See #39 (comment) please)
소개
특이사항