Change: sync groups on first login too

This commit is contained in:
shamoon 2025-03-13 05:33:34 -07:00
parent db5e54c6e5
commit 53ff6e3a76
No known key found for this signature in database

View File

@ -10,6 +10,8 @@ from django.contrib.auth.models import User
from django.forms import ValidationError
from django.urls import reverse
from paperless.signals import handle_social_account_updated
logger = logging.getLogger("paperless.auth")
@ -114,4 +116,5 @@ class CustomSocialAccountAdapter(DefaultSocialAccountAdapter):
)
user.groups.add(*groups)
user.save()
handle_social_account_updated(None, request, sociallogin)
return user