10 lines
226 B
Ruby
10 lines
226 B
Ruby
Rails.application.routes.draw do
|
|
namespace :api do
|
|
namespace :restaurant do
|
|
get 'zone/index'
|
|
end
|
|
end
|
|
|
|
# For details on the DSL available within this file, see http://guides.rubyonrails.org/routing.html
|
|
end
|