Gregniuki commited on
Commit
0bbc3b6
1 Parent(s): 78fa7e7

Update auth.py

Browse files
Files changed (1) hide show
  1. auth.py +2 -1
auth.py CHANGED
@@ -34,9 +34,10 @@ def verify_token(token: str = Depends(oauth2_scheme)):
34
 
35
  class UserCreate(BaseModel):
36
  username: str
 
37
  password: str
38
  confirm_password: str
39
- email: str
40
 
41
  from emailx import send_verification_email, generate_verification_token
42
 
 
34
 
35
  class UserCreate(BaseModel):
36
  username: str
37
+ email: str
38
  password: str
39
  confirm_password: str
40
+
41
 
42
  from emailx import send_verification_email, generate_verification_token
43