orbit-basic/vendor/built_in_modules/gallery/config/routes.rb

69 lines
2.4 KiB
Ruby
Raw Normal View History

2012-07-10 09:43:21 +00:00
Rails.application.routes.draw do
2012-08-27 15:36:56 +00:00
2012-07-19 07:44:44 +00:00
namespace :panel do
2012-11-14 07:28:55 +00:00
namespace :gallery do
2012-11-15 04:11:58 +00:00
namespace :back_end do
match "get_albums" => "albums#get_albums"
2012-11-15 04:11:58 +00:00
match "upload_image" => "albums#upload_image"
match "save_tags" => "tags#save_tags"
match "albums/save_tags" => "tags#save_tags"
2013-07-17 10:45:44 +00:00
match "new_images" => "albums#new_images"
match "set_cover" => "albums#set_cover"
match "delete_photos" => "album_images#delete_photos"
match "update_image" => "album_images#update_image"
match "image_tagging" => "album_images#image_tagging"
2012-11-15 04:11:58 +00:00
resources :albums do
2012-11-15 04:11:58 +00:00
match "imgs" => "albums#imgs"
match "upload_panel" => "albums#upload_panel"
match "images_tags" => "albums#images_tags"
match "get_imgs_json" => "albums#get_imgs_json"
2013-07-17 10:45:44 +00:00
2012-11-15 04:11:58 +00:00
collection do
get "get_album_json"
end
end
2012-08-27 15:36:56 +00:00
2012-11-15 04:11:58 +00:00
match "album_images/#!/:id" => "album_images#show"
resources :album_images
end
2012-11-15 04:11:58 +00:00
namespace :front_end do
match "orbit_galleries" => "orbit_galleries#index"
match "get_albums" => "albums#get_albums"
# match "orbit_galleries" => "orbit_galleries#index"
# match "gallery_category_save" => "orbit_galleries#new_category"
# match "categorylist" => "orbit_galleries#categorylist"
# match "gallery_category_delete" => "orbit_galleries#gallery_category_delete"
# match "add_album" => "orbit_galleries#add_album"
# match "create_album" => "orbit_galleries#create_album"
# match "get_albums" => "orbit_galleries#get_albums"
# match "upload_image" => "orbit_galleries#upload_image"
# match "upload_panel" => "orbit_galleries#upload_panel"
# match "get_images" => "orbit_galleries#get_images"
# match "theater" => "orbit_galleries#theater"
# match "delete_album" => "orbit_galleries#delete_album"
# match "edit_album" => "orbit_galleries#edit_album"
# match "set_cover" => "orbit_galleries#set_cover"
# match "delete_images" => "orbit_galleries#delete_images"
# match "update_album" => "orbit_galleries#update_album"
# match "save_tags" => "orbit_galleries#save_tags"
resources :albums do
member do
get "imgs"
get "theater"
end
end
resources :album_images
end
namespace :widget do
match "widget1" => "albums#widget1"
end
end
2012-07-19 07:44:44 +00:00
end
2012-07-10 09:43:21 +00:00
end