Files
website-v2/users/apps.py
Lacey Williams Henschel f2a0da771e Add signal for saving profile data upon a new GH login
I did skip the tests -- my first tries with `patch` didn't work and I wanted to have this working for the demo, at least locally.
2023-02-16 15:22:06 -08:00

9 lines
136 B
Python

from django.apps import AppConfig
class UsersConfig(AppConfig):
name = "users"
def ready(self):
import users.signals