Sha256: e53e53b6104fd8988a245d852eb8d9fe034258991278e0604aced4285f35762a
Contents?: true
Size: 409 Bytes
Versions: 5
Compression:
Stored size: 409 Bytes
Contents
Rails.application.routes.draw do resources :posts # For details on the DSL available within this file, see https://guides.rubyonrails.org/routing.html put "/known/get", to: "home#get_action" put "/known/put", to: "home#put_action" patch "/known/patch", to: "home#patch_action" delete "/known/delete", to: "home#delete_action" post "/known/post", to: "home#post_action" root "home#index" end
Version data entries
5 entries across 5 versions & 1 rubygems