Skip to content

Commit

Permalink
Second try
Browse files Browse the repository at this point in the history
  • Loading branch information
oski-bear committed Apr 21, 2024
1 parent 420d5b2 commit 6a42fb1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion apps/newuser/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,9 @@ def _make_newuser(request, form, context):
"""Creates a new user in LDAP and runs config_newuser
if config_newuser fails, the user account is deleted to prevent the user
account from being in limbo."""
enroll_jobs = "true" if form.cleaned_data["enroll_jobs"] else "false"
#enroll_jobs = "true" if form.cleaned_data["enroll_jobs"] else "false"
#disabling temporarily before the mailman3 migration
enroll_jobs = "false"
success, uid = create_new_user(
form.cleaned_data["username"],
form.cleaned_data["full_name"],
Expand Down

0 comments on commit 6a42fb1

Please sign in to comment.