fixed answers not being deleted

This commit is contained in:
nilsding 2014-12-15 19:19:26 +01:00
parent a30e6509b5
commit 6471e3baa5
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ class Ajax::AnswerController < ApplicationController
if answer.user == current_user if answer.user == current_user
Inbox.create!(user: answer.user, question: answer.question, new: true) Inbox.create!(user: answer.user, question: answer.question, new: true)
end # TODO: decide what happens with the question end # TODO: decide what happens with the question
Notification.denotify self.question.user, answer Notification.denotify answer.question.user, answer
answer.destroy answer.destroy
@status = :okay @status = :okay