Skip to content

Commit

Permalink
removed deprecated arg
Browse files Browse the repository at this point in the history
  • Loading branch information
calellowitz committed Sep 26, 2023
1 parent 3f3fa9f commit a311713
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commcare_connect/users/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def start_learn_app(request):
return HttpResponse("Opportunity requires API Key", status=400)
app = opportunity.learn_app
domain = app.cc_domain
user_created = create_hq_user(request.user, domain, app, api_key)
user_created = create_hq_user(request.user, domain, api_key)
if not user_created:
return HttpResponse("Failed to create user", status=400)
ConnectIDUserLink.objects.create(commcare_username=request.user.username, user=request.user)
Expand Down

0 comments on commit a311713

Please sign in to comment.