2013-04-10 07:26:57 +00:00
|
|
|
Rails.application.routes.draw do
|
2012-02-15 07:38:27 +00:00
|
|
|
namespace :panel do
|
|
|
|
namespace :web_resource do
|
|
|
|
namespace :back_end do
|
2012-05-05 13:20:20 +00:00
|
|
|
resources :web_links do
|
|
|
|
collection do
|
2012-08-13 16:59:01 +00:00
|
|
|
get 'delete'
|
2012-05-05 13:20:20 +00:00
|
|
|
end
|
|
|
|
end
|
2013-04-10 07:26:57 +00:00
|
|
|
resources :web_link_categorys
|
2012-02-15 07:38:27 +00:00
|
|
|
resources :tags
|
|
|
|
end
|
|
|
|
namespace :front_end do
|
2013-04-10 07:26:57 +00:00
|
|
|
match "web_links" => "web_links#index"
|
2012-02-15 07:38:27 +00:00
|
|
|
resources :web_links
|
|
|
|
end
|
|
|
|
namespace :widget do
|
2013-04-10 07:26:57 +00:00
|
|
|
match "index" => "web_links#index"
|
2012-02-15 07:38:27 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
match "/appfront/*path" => redirect("/panel/*path")
|
|
|
|
end
|