mirror of
https://github.com/Rushilwiz/NewViewsNews.git
synced 2025-04-23 04:39:49 -04:00
6 lines
118 B
Python
6 lines
118 B
Python
from django.dispatch import Signal
|
|
|
|
user_logged_in = Signal()
|
|
user_login_failed = Signal()
|
|
user_logged_out = Signal()
|