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