| commit | 0235e983ec665f46ca9dc75d3341c77603cdfd1d | [log] [tgz] |
|---|---|---|
| author | Sapan Bhatia <gwsapan@gmail.com> | Wed Sep 03 13:14:40 2014 -0400 |
| committer | Sapan Bhatia <gwsapan@gmail.com> | Wed Sep 03 13:14:40 2014 -0400 |
| tree | 772ba98041bdf68e2bbb0109f5bd3d7c9539cadb | |
| parent | 29ad9b6ad3a49bda4c8a1c6ee03271b1997d63c1 [diff] [blame] |
Include model policies
diff --git a/planetstack/model_policies.py b/planetstack/model_policies.py new file mode 100644 index 0000000..3663c27 --- /dev/null +++ b/planetstack/model_policies.py
@@ -0,0 +1,8 @@ +from django.core.signals import post_save +from django.dispatch import receiver +import pdb + +@receiver(post_save) +def post_save_handler(sender, **kwargs): + pdb.set_trace() + print("Request finished!")