We're not adding the rule because it would apply the current line length rule of 110 characters per line. We still haven't decided whether we'll keep that rule or make lines shorter so they're easier to read, particularly when vertically splitting the editor window. So, for now, I'm applying the rule to lines which are about 90 characters long.
42 lines
1.3 KiB
Ruby
42 lines
1.3 KiB
Ruby
class Legislation::AnswersController < Legislation::BaseController
|
|
before_action :authenticate_user!
|
|
before_action :verify_resident!
|
|
|
|
load_and_authorize_resource :process
|
|
load_and_authorize_resource :question, through: :process
|
|
load_and_authorize_resource :answer, through: :question
|
|
|
|
respond_to :html, :js
|
|
|
|
def create
|
|
if @process.debate_phase.open?
|
|
@answer.user = current_user
|
|
@answer.save!
|
|
track_event
|
|
respond_to do |format|
|
|
format.js
|
|
format.html { redirect_to legislation_process_question_path(@process, @question) }
|
|
end
|
|
else
|
|
alert = t("legislation.questions.participation.phase_not_open")
|
|
respond_to do |format|
|
|
format.js { render json: {}, status: :not_found }
|
|
format.html { redirect_to legislation_process_question_path(@process, @question), alert: alert }
|
|
end
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def answer_params
|
|
params.require(:legislation_answer).permit(:legislation_question_option_id)
|
|
end
|
|
|
|
def track_event
|
|
ahoy.track :legislation_answer_created,
|
|
legislation_answer_id: @answer.id,
|
|
legislation_question_option_id: @answer.legislation_question_option_id,
|
|
legislation_question_id: @answer.legislation_question_id
|
|
end
|
|
end
|