Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
erikguntner committed May 21, 2024
1 parent dd6f88f commit 6e3a632
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions api/openapi_server/controllers/auth_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,13 @@ def sign_up(body: dict, role: UserRole):

try:
response = current_app.boto_client.sign_up(
ClientId=current_app.config['COGNITO_CLIENT_ID'],
SecretHash=secret_hash,
Username=body['email'],
Password=body['password'],
ClientMetadata={
'url': current_app.root_url
}
ClientId=current_app.config['COGNITO_CLIENT_ID'],
SecretHash=secret_hash,
Username=body['email'],
Password=body['password'],
ClientMetadata={
'url': current_app.root_url
}
)
return response

Expand Down

0 comments on commit 6e3a632

Please sign in to comment.