Fix some gallery routes
This commit is contained in:
		
							parent
							
								
									d61621e198
								
							
						
					
					
						commit
						609c932cca
					
				|  | @ -45,7 +45,7 @@ var galleryAPI = function(){ | ||||||
| 		}else{ | 		}else{ | ||||||
| 			var cids = "all"; | 			var cids = "all"; | ||||||
| 		} | 		} | ||||||
| 		$.getJSON("panel/gallery/front_end/get_albums",{"cid":cids,"tid":tids,"inner":true},function(categories){ | 		$.getJSON("/panel/gallery/front_end/get_albums",{"cid":cids,"tid":tids,"inner":true},function(categories){ | ||||||
| 			$.each(categories,function(x,category){ | 			$.each(categories,function(x,category){ | ||||||
| 				$.each(category,function(i,album){ | 				$.each(category,function(i,album){ | ||||||
| 					album.description = (album.description?album.description:"<%= I18n.t('gallery.no_description') %>") | 					album.description = (album.description?album.description:"<%= I18n.t('gallery.no_description') %>") | ||||||
|  |  | ||||||
|  | @ -21,35 +21,34 @@ Rails.application.routes.draw do | ||||||
|         resources :album_images  |         resources :album_images  | ||||||
|         resources :gallery_categories |         resources :gallery_categories | ||||||
|         resources :tags |         resources :tags | ||||||
| 
 |  | ||||||
|       end |       end | ||||||
|       namespace :front_end do |       namespace :front_end do | ||||||
|         match "get_albums" => "albums#get_albums" |       	match "get_albums" => "albums#get_albums" | ||||||
|         # match "orbit_galleries" => "orbit_galleries#index" |       	match "orbit_galleries" => "orbit_galleries#index" | ||||||
|         # match "gallery_category_save" => "orbit_galleries#new_category" |       	# match "gallery_category_save" => "orbit_galleries#new_category" | ||||||
|         # match "categorylist" => "orbit_galleries#categorylist" |       	# match "categorylist" => "orbit_galleries#categorylist" | ||||||
|         # match "gallery_category_delete" => "orbit_galleries#gallery_category_delete" |       	# match "gallery_category_delete" => "orbit_galleries#gallery_category_delete" | ||||||
|         # match "add_album" => "orbit_galleries#add_album" |       	# match "add_album" => "orbit_galleries#add_album" | ||||||
|         # match "create_album" => "orbit_galleries#create_album" |       	# match "create_album" => "orbit_galleries#create_album" | ||||||
|         # match "get_albums" => "orbit_galleries#get_albums" |       	# match "get_albums" => "orbit_galleries#get_albums" | ||||||
|         # match "upload_image" => "orbit_galleries#upload_image" |       	# match "upload_image" => "orbit_galleries#upload_image" | ||||||
|         # match "upload_panel" => "orbit_galleries#upload_panel" |       	# match "upload_panel" => "orbit_galleries#upload_panel" | ||||||
|         # match "get_images" => "orbit_galleries#get_images" |       	# match "get_images" => "orbit_galleries#get_images" | ||||||
|         # match "theater" => "orbit_galleries#theater" |       	# match "theater" => "orbit_galleries#theater" | ||||||
|         # match "delete_album" => "orbit_galleries#delete_album" |       	# match "delete_album" => "orbit_galleries#delete_album" | ||||||
|         # match "edit_album" => "orbit_galleries#edit_album" |       	# match "edit_album" => "orbit_galleries#edit_album" | ||||||
|         # match "set_cover" => "orbit_galleries#set_cover" |       	# match "set_cover" => "orbit_galleries#set_cover" | ||||||
|         # match "delete_images" => "orbit_galleries#delete_images" |       	# match "delete_images" => "orbit_galleries#delete_images" | ||||||
|         # match "update_album" => "orbit_galleries#update_album" |       	# match "update_album" => "orbit_galleries#update_album" | ||||||
|         # match "save_tags" => "orbit_galleries#save_tags" |       	# match "save_tags" => "orbit_galleries#save_tags" | ||||||
|         resources :albums do |       	resources :albums do | ||||||
|           member do |       		member do | ||||||
|             get "imgs" |       			get "imgs" | ||||||
|             get "theater" |       			get "theater" | ||||||
|           end |       		end | ||||||
|         end |       	end | ||||||
|         resources :album_images |       	resources :album_images  | ||||||
|       end |       end | ||||||
|     end |   	end | ||||||
|   end | 	end | ||||||
| end | end | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue