-
Notifications
You must be signed in to change notification settings - Fork 0
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
func of checking user's email #15
base: master
Are you sure you want to change the base?
Conversation
…ckend_ver.test into G1ltchy follow up branch
routes/auth/route.py
Outdated
|
||
await database["user"].insert_one(findUser) | ||
|
||
del findUser |
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.
데이터베이스 내에서 문서(데이터)를 지우기 위해서는 Collection.delete_one(filter) 비동기 메소드를 사용해야 합니다.
example
await database["pending"].delete_one({"userId": userId})
routes/auth/route.py
Outdated
|
||
database = GetDatabase(config["DATABASE"]["URI"]) | ||
|
||
SMTP_SERVER = 'smtp-mail.outlook.com' |
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.
이건 퍼블리싱 할 때 수정하지 않아도 되는 메일인가요?
공개적으로 노출된 메일일 경우, 유저들에게 혼란을 줄 수 있는 메일을 생성할 가능성이 높습니다.
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.
이건 smtp서버여서 이메일 자체와는 상관 없습니다.
수정완료 |
stmp 라이브러리를 썼을 때, 비동기 라우트 내에서 동기 함수를 호출했으므로, 관련한 오류는 발생하지 않나요? |
나도 진짜 잘은 모르겠는데 await 붙이면 오류 나서 다 뗀거야. |
추가목록:
auth 라우터
예상 Issue:
pending 쓰레기 값 범람
현재 pending에서 값을 지우는 방법은 계정을 완전히 인증하는 방법밖에 없음.