You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by ma...@apache.org on 2019/12/12 23:18:44 UTC

[airavata-django-portal] 04/07: AIRAVATA-3243 auth: activate signal receivers on startup

This is an automated email from the ASF dual-hosted git repository.

machristie pushed a commit to branch airavata-3243
in repository https://gitbox.apache.org/repos/asf/airavata-django-portal.git

commit ee2c24786d4a4fe36eb8fc7b285e86067a28b3cd
Author: Marcus Christie <ma...@apache.org>
AuthorDate: Thu Dec 12 15:12:11 2019 -0500

    AIRAVATA-3243 auth: activate signal receivers on startup
---
 django_airavata/apps/auth/apps.py | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/django_airavata/apps/auth/apps.py b/django_airavata/apps/auth/apps.py
index 1e103a4..cca02f9 100644
--- a/django_airavata/apps/auth/apps.py
+++ b/django_airavata/apps/auth/apps.py
@@ -4,3 +4,6 @@ from django.apps import AppConfig
 class AuthConfig(AppConfig):
     name = 'django_airavata.apps.auth'
     label = 'django_airavata_auth'
+
+    def ready(self):
+        from . import signals  # noqa