Fix user creation.
This commit is contained in:
parent
3d438b9591
commit
f7858a20b7
@ -28,7 +28,7 @@ def get_user_queryset(queryset, context: CallbackContext):
|
|||||||
def create_user(context: CallbackContext, *args, **kwargs):
|
def create_user(context: CallbackContext, *args, **kwargs):
|
||||||
custom_func = app_settings.CREATE_USER_FUNC
|
custom_func = app_settings.CREATE_USER_FUNC
|
||||||
if custom_func is not None:
|
if custom_func is not None:
|
||||||
return custom_func(*args, **kwargs)
|
return custom_func(context, *args, **kwargs)
|
||||||
return User.objects.create_user(*args, **kwargs)
|
return User.objects.create_user(*args, **kwargs)
|
||||||
|
|
||||||
|
|
||||||
|
@ -181,7 +181,7 @@ async def is_etebase():
|
|||||||
|
|
||||||
|
|
||||||
@authentication_router.post("/login_challenge/", response_model=LoginChallengeOut)
|
@authentication_router.post("/login_challenge/", response_model=LoginChallengeOut)
|
||||||
async def login_challenge(user: User = Depends(get_login_user)):
|
def login_challenge(user: User = Depends(get_login_user)):
|
||||||
salt = bytes(user.userinfo.salt)
|
salt = bytes(user.userinfo.salt)
|
||||||
enc_key = get_encryption_key(salt)
|
enc_key = get_encryption_key(salt)
|
||||||
box = nacl.secret.SecretBox(enc_key)
|
box = nacl.secret.SecretBox(enc_key)
|
||||||
@ -238,10 +238,10 @@ def signup_save(data: SignupIn, request: Request) -> User:
|
|||||||
# Create the user and save the casing the user chose as the first name
|
# Create the user and save the casing the user chose as the first name
|
||||||
try:
|
try:
|
||||||
instance = create_user(
|
instance = create_user(
|
||||||
|
CallbackContext(request.path_params),
|
||||||
**user_data.dict(),
|
**user_data.dict(),
|
||||||
password=None,
|
password=None,
|
||||||
first_name=user_data.username,
|
first_name=user_data.username,
|
||||||
context=CallbackContext(request.path_params),
|
|
||||||
)
|
)
|
||||||
instance.full_clean()
|
instance.full_clean()
|
||||||
except HttpError as e:
|
except HttpError as e:
|
||||||
|
Loading…
Reference in New Issue
Block a user