FIX: yank existing notification when unaccepted

This commit is contained in:
Sam 2015-06-22 10:06:18 +10:00
parent dd737a78b3
commit 944ff5a70f
1 changed files with 10 additions and 0 deletions

View File

@ -63,6 +63,16 @@ after_initialize do
post.topic.save!
post.save!
# yank notification
notification = Notification.find_by(
notification_type: Notification.types[:custom],
user_id: post.user_id,
topic_id: post.topic_id,
post_number: post.post_number
)
notification.destroy if notification
render json: success_json
end
end