This repository has been archived on 2024-03-16. You can view files and clone it, but cannot push or open issues or pull requests.
2012-09-17 13:36:40 +00:00
|
|
|
Rails.application.routes.draw do
|
2012-11-07 17:26:33 +00:00
|
|
|
namespace :panel do
|
2013-01-15 09:47:00 +00:00
|
|
|
namespace :location do
|
2012-11-07 17:26:33 +00:00
|
|
|
namespace :back_end do
|
2013-11-12 08:39:08 +00:00
|
|
|
match 'location_categories/list' => "location_categories#list"
|
|
|
|
resources :location_categories
|
2012-11-07 17:26:33 +00:00
|
|
|
match "locations/get_locations" => "locations#get_locations"
|
2013-06-14 08:08:30 +00:00
|
|
|
match "locations/get_categories" => "locations#get_categories"
|
2012-09-17 13:36:40 +00:00
|
|
|
|
2012-11-07 17:26:33 +00:00
|
|
|
resources :locations
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2012-09-17 13:36:40 +00:00
|
|
|
end
|