Files
sx-fc/config/routes.rb
2017-03-24 21:50:01 +06:30

10 lines
275 B
Ruby

Rails.application.routes.draw do
namespace :api, :defaults => { :format => 'json' } do
namespace :restaurant do
get 'zones' => "zones#index"
end
end
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
end