Skip to content

Commit 18816f1

Browse files
committed
#43 django signalsが実行出来ない問題の修正.
1 parent c07319d commit 18816f1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

custom_auth/apps.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ class CustomAuth(AppConfig):
77
verbose_name = "カスタムユーザ"
88

99
def ready(self):
10-
pass
10+
from . import signals # noqa

ticket/apps.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ class Ticket(AppConfig):
66
verbose_name = "チケット"
77

88
def ready(self):
9-
pass
9+
from . import signals # noqa

0 commit comments

Comments
 (0)