mirror of
https://github.com/boostorg/website-v2.git
synced 2026-02-26 17:22:09 +00:00
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.
9 lines
136 B
Python
9 lines
136 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class UsersConfig(AppConfig):
|
|
name = "users"
|
|
|
|
def ready(self):
|
|
import users.signals
|