File size: 435 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
Rails.application.routes.draw do
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
namespace :api, defaults: {format: :json} do
resources :users, only: [:create,:index,:show]
resource :session, only: [:create, :destroy]
resources :spots, only: [:index, :show ]
resources :bookings, only: [:index, :show, :create, :destroy ]
end
root "static_pages#root"
end
|