Remove unused api/v1/polls#create route (#32860)

This commit is contained in:
Matt Jankowski 2024-11-12 12:27:23 -05:00 committed by GitHub
parent 884bbf7ae2
commit ace4268308
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -225,7 +225,7 @@ namespace :api, format: false do
resources :featured_tags, only: [:index, :create, :destroy]
resources :polls, only: [:create, :show] do
resources :polls, only: [:show] do
resources :votes, only: :create, module: :polls
end