Skip to content

Instantly share code, notes, and snippets.

View jbaek7023's full-sized avatar
👨‍💻

Jae-Min Baek jbaek7023

👨‍💻
  • Google
  • San Francisco Bay Area
View GitHub Profile
@jbaek7023
jbaek7023 / django custom signal
Created June 5, 2017 03:24 — forked from venkatesh22/django custom signal
django custom signals creation example
#signals.py
from django.dispatch import Signal
user_login = Signal(providing_args=["request", "user"])
#views.py
from foo import signals