Skip to content

Commit

Permalink
Merge branch 'feature/delete-flow-recent-activities' of https://githu…
Browse files Browse the repository at this point in the history
  • Loading branch information
lucaslinhares committed Apr 10, 2024
2 parents 3df250c + eda7980 commit e044977
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion weni/activities/apps.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
from django.apps import AppConfig
from django.conf import settings


class ActivitiesConfig(AppConfig):
default_auto_field = "django.db.models.BigAutoField"
name = "weni.activities"

def ready(self) -> None:
from weni.activities import signals # noqa: F401
if not settings.TESTING:
from weni.activities import signals # noqa: F401

0 comments on commit e044977

Please sign in to comment.