vegantech/sims

View on GitHub
app/controllers/interventions/objectives_controller.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Interventions::ObjectivesController < ApplicationController
  include PopulateInterventionDropdowns

  def index
    populate_goals
  end

   def create
    respond_to do |format|
      format.html do
        if params[:objective_id].present?
          redirect_to interventions_categories_url(params[:goal_id],params[:objective_id],
                                                  :custom_intervention => params[:custom_intervention])
        else
          redirect_to :back
          # interventions_objectives_url(params[:goal_id],params[:objective_id])
        end
      end
      format.js {
        populate_categories
      }
    end
  end

end