Add allauth_oauth app to sync user fields on OAuth login

This commit is contained in:
krek0 2026-05-07 14:08:13 +02:00
parent b916a00c35
commit ed28d4a9c4
2 changed files with 41 additions and 0 deletions

12
allauth_oauth/apps.py Normal file
View file

@ -0,0 +1,12 @@
# This file is part of photo21
# Copyright (C) 2022 Amicale des élèves de l'ENS Paris-Saclay
# SPDX-License-Identifier: GPL-3.0-or-later
from django.apps import AppConfig
class AllauthOAuthConfig(AppConfig):
name = "allauth_oauth"
def ready(self):
import allauth_oauth.signals # noqa: F401