Files
grecia/config/routes/comment.rb
2021-04-13 20:04:04 +02:00

9 lines
143 B
Ruby

resources :comments, only: [:create, :show], shallow: true do
member do
post :vote
put :flag
put :unflag
put :hide
end
end