12 lines
355 B
Python
12 lines
355 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class CollaborationWarRoomsConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'collaboration_war_rooms'
|
|
verbose_name = 'Collaboration & War Rooms'
|
|
|
|
def ready(self):
|
|
"""Import signal handlers when the app is ready"""
|
|
import collaboration_war_rooms.signals
|