AyuntamientoMadrid/participacion

View on GitHub
app/controllers/admin/poll/active_polls_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Admin::Poll::ActivePollsController < Admin::Poll::BaseController
  include Translatable

  before_action :load_active_poll

  def create
    if @active_poll.update(active_poll_params)
      redirect_to admin_polls_path, notice: t("flash.actions.update.active_poll")
    else
      render :edit
    end
  end

  def edit
  end

  def update
    if @active_poll.update(active_poll_params)
      redirect_to admin_polls_path, notice: t("flash.actions.update.active_poll")
    else
      render :edit
    end
  end

  private

    def load_active_poll
      @active_poll = ::ActivePoll.first_or_initialize
    end

    def active_poll_params
      params.require(:active_poll).permit(allowed_params)
    end

    def allowed_params
      [translation_params(ActivePoll)]
    end
end