Sha256: 70b90cfc31f27ae079be250442a42bdf8c655ef5f22d4b2b5a73c16dcfdf9102

Contents?: true

Size: 928 Bytes

Versions: 11

Compression:

Stored size: 928 Bytes

Contents

module Rostra
  class AnswersController < ApplicationController
    load_and_authorize_resource
    before_filter :fetch_question

    def vote
      rostra_user.vote_on(@answer, params[:vote_direction])

      respond_to do |format|
        format.html { redirect_to question_path(@question, anchor: "rostra_answer_#{@answer.id}") }
        format.js
      end
    end

    def create
      if @answer.save
        redirect_to question_path(@question, anchor: "rostra_answer_#{@answer.id}")
      else
        redirect_to question_path(@question, anchor: 'new_rostra_answer')
      end
    end

    def edit
    end

    def update
      if @answer.update_attributes(params[:answer])
        redirect_to question_path(@question, anchor: "rostra_answer_#{@answer.id}")
      else
        render :edit
      end
    end

    private

    def fetch_question
      @question = Question.find(params[:question_id])
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
rostra-0.0.14 app/controllers/rostra/answers_controller.rb
rostra-0.0.13 app/controllers/rostra/answers_controller.rb
rostra-0.0.12 app/controllers/rostra/answers_controller.rb
rostra-0.0.11 app/controllers/rostra/answers_controller.rb
rostra-0.0.10 app/controllers/rostra/answers_controller.rb
rostra-0.0.9 app/controllers/rostra/answers_controller.rb
rostra-0.0.8 app/controllers/rostra/answers_controller.rb
rostra-0.0.7 app/controllers/rostra/answers_controller.rb
rostra-0.0.6 app/controllers/rostra/answers_controller.rb
rostra-0.0.5 app/controllers/rostra/answers_controller.rb
rostra-0.0.4 app/controllers/rostra/answers_controller.rb