AyuntamientoMadrid/participacion

View on GitHub
config/routes/poll.rb

Summary

Maintainability
A
0 mins
Test Coverage
resources :polls, only: [:show, :index] do
  member do
    get :stats
    get :results
  end

  resources :questions, controller: "polls/questions", shallow: true, only: [] do
    resources :answers, controller: "polls/answers", only: [:create, :destroy], shallow: false
  end
end

resolve "Poll::Question" do |question, options|
  [:question, options.merge(id: question)]
end