auth: do not automatically staff new members

pull/1/head
palid 2023-08-25 21:36:19 +02:00
parent 15bf813b04
commit 0fa9762bea
Signed by: palid
SSH Key Fingerprint: SHA256:Mus3wCd2x6nxtARI0DpWGT7lIWbNy3R90BVDg0j35PI
2 changed files with 0 additions and 10 deletions

View File

@ -2,15 +2,6 @@ from social_core.pipeline.social_auth import associate_by_email
from django.contrib.auth.models import Group
def staff_me_up(backend, details, response, uid, user, *args, **kwargs):
user.is_staff = True
try:
user.groups.set([Group.objects.get(name="member")])
except Group.DoesNotExist:
pass
user.save()
def associate_by_personal_email(backend, details, user=None, *args, **kwargs):
return associate_by_email(
backend,

View File

@ -163,7 +163,6 @@ SOCIAL_AUTH_PIPELINE = (
"social_core.pipeline.social_auth.associate_user",
"social_core.pipeline.social_auth.load_extra_data",
"social_core.pipeline.user.user_details",
"auth.pipeline.staff_me_up",
)
# Internationalization