Files
grecia/config/routes/comment.rb
2023-10-09 07:38:01 +02:00

10 lines
190 B
Ruby

resources :comments, only: [:create, :show] do
member do
put :flag
put :unflag
put :hide
end
resources :votes, controller: "comments/votes", only: [:create, :destroy]
end