Sha256: 79af2e2a6b449b2fac20e0e49c3b7d86fc1c9e1de1cd293c6e98f76c79ab3b0e
Contents?: true
Size: 806 Bytes
Versions: 4
Compression:
Stored size: 806 Bytes
Contents
Rails.application.routes.draw do get "/users/:user_id/render_elsewhere(.:format)", :to => "likes#render_elsewhere" get "/users/:user_id/send_instructions", :to => "users#send_instructions" get "/users/noaction", :to => "users#noaction" resources :users do resources :likes end get "/home(.:format)", :to => "home#index", :as => :home get "/home/only_html", :to => "home#only_html", :as => :only_html get "/another(.:format)", :to => "home#another", :as => :another get "/useheader(.:format)", :to => "home#useheader", :as => :useheader get "/withpartial(.:format)", :to => "home#withpartial", :as => :withpartial get "/home/render_elsewhere(.:format)", :to => "home#render_elsewhere" get "/render_elsewhere(.:format)", :to => "home#render_elsewhere" root to: "home#index" end
Version data entries
4 entries across 2 versions & 1 rubygems