25 lines
723 B
Ruby
25 lines
723 B
Ruby
Rails.application.routes.draw do
|
|
|
|
namespace :panel do
|
|
namespace :web_resource do
|
|
namespace :back_end do
|
|
root :to => "web_links#index"
|
|
resources :web_links
|
|
resources :web_link_categorys, :controller => 'web_link_categorys' do
|
|
match "quick_edit/:web_link_category_id" => "web_link_categorys#quick_edit" ,:as => :quick_edit
|
|
end
|
|
resources :tags
|
|
end
|
|
namespace :front_end do
|
|
root :to => "web_links#index"
|
|
resources :web_links
|
|
end
|
|
namespace :widget do
|
|
match "web_links" => "web_links#index"
|
|
match "reload_web_links" => "web_links#reload_web_links"
|
|
end
|
|
end
|
|
end
|
|
match "/appfront/*path" => redirect("/panel/*path")
|
|
end
|