Sha256: b95ed1970f28adae51f7af8a22f7c2e4b53fda996d56dd67e720079369d77211
Contents?: true
Size: 417 Bytes
Versions: 3
Compression:
Stored size: 417 Bytes
Contents
Rails.application.routes.draw do # For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html root 'home#index' get '/home/index', to: 'home#index' get '/home/help', to: 'home#help' get '/home/about', to: 'home#about' namespace :admin do resources :sessions resources :users, :only => [:index, :show] end resources :users, :only => [:index, :show] end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
rails_amp-0.2.2 | spec/dummy/config/routes.rb |
rails_amp-0.2.1 | spec/dummy/config/routes.rb |
rails_amp-0.2.0 | spec/dummy/config/routes.rb |