# HG changeset patch # User Brian Neal # Date 1399235876 18000 # Node ID b6d6c9e37faeed665bc6bf5dbcec16d59619d1c3 # Parent feafa1c3d356a0283978b0ec712e8f064b298cde Issue #68, calendar generated forum threads should be indexed. diff -r feafa1c3d356 -r b6d6c9e37fae forums/tools.py --- a/forums/tools.py Sun May 04 15:18:26 2014 -0500 +++ b/forums/tools.py Sun May 04 15:37:56 2014 -0500 @@ -4,6 +4,7 @@ import logging from forums.models import Post, Topic, Forum, ForumLastVisit, TopicLastVisit +from forums.signals import notify_new_topic, notify_new_post def delete_user_posts(user): @@ -107,6 +108,9 @@ user_ip=ip) post.save() + notify_new_topic(topic) + notify_new_post(post) + def auto_favorite(post): """