AyuntamientoMadrid/participacion

View on GitHub
config/routes/comment.rb

Summary

Maintainability
A
0 mins
Test Coverage
resources :comments, only: [:create, :show] do
  member do
    put :flag
    put :unflag
    put :hide
  end

  resources :votes, controller: "comments/votes", only: [:create, :destroy]
end