Sha256: 0a22d157e4b1d9af322d3f52a7182a7a502b6a5e7973b02f119a6c4c6c9c8ef9

Contents?: true

Size: 352 Bytes

Versions: 7

Compression:

Stored size: 352 Bytes

Contents

Dummy::Application.routes.draw do
  namespace :admin do
    match '/users' => 'users#index'
  end
  resources :users, :except => :update
  resources :registrations, :only => :update, :as => :registrations_user
  resources :comments

  match '/comments/:id/vote/:value' => 'comments#vote', :id => /\d+/, :value => /\d+/

  root :to => 'users#index'
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
merit-1.5.0 test/dummy/config/routes.rb
merit-1.4.0 test/dummy/config/routes.rb
merit-1.3.1 test/dummy/config/routes.rb
merit-1.3.0 test/dummy/config/routes.rb
merit-1.2.3 test/dummy/config/routes.rb
merit-1.2.2 test/dummy/config/routes.rb
merit-1.2.1 test/dummy/config/routes.rb