Skip to content

Commit

Permalink
♻️ Change verification code to be comprised of digits ONLY
Browse files Browse the repository at this point in the history
  • Loading branch information
yjeong-k committed Nov 10, 2023
1 parent 257a93d commit 98d6c6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/user/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def normalize_email(email):

def generate_code():
LENGTH = 6
seed = string.ascii_letters + string.digits
seed = string.digits
code = ""

for i in range(LENGTH):
Expand Down

0 comments on commit 98d6c6b

Please sign in to comment.