Sha256: 011970514a5d1ab5d615c58b8a8316405e1596f1a2cbb08e42e33118e1c4e80d

Contents?: true

Size: 473 Bytes

Versions: 1

Compression:

Stored size: 473 Bytes

Contents

Rails.application.routes.draw do
  get '/products/brainstorming' => 'product/brainstorming#index'
  
  namespace :voluntary, path: 'api', module: 'voluntary/api', defaults: {format: 'json'} do
    namespace :v1 do
      resources :brainstormings, only: [:index, :create, :show, :update, :destroy]
      resources :brainstorming_ideas, only: [:index, :create, :update, :destroy]
      resources :brainstorming_idea_votes, only: [:index, :create, :destroy]
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
voluntary_brainstorming-0.0.2 config/routes.rb