Method: AnswersController#destroy

Defined in:
app/controllers/answers_controller.rb

#destroyObject

DELETE /answers/1 DELETE /answers/1.json



128
129
130
131
132
133
134
135
# File 'app/controllers/answers_controller.rb', line 128

def destroy
  @answer.destroy

  respond_to do |format|
    format.html { redirect_to question_answers_url(@answer.question) }
    format.json { head :no_content }
  end
end