added description for images and albums
This commit is contained in:
parent
6ec8f6a5c0
commit
f48ae3228c
|
@ -3,6 +3,7 @@ class GalleriesController < ApplicationController
|
||||||
albums = Album.filter_by_categories.collect do |a|
|
albums = Album.filter_by_categories.collect do |a|
|
||||||
{
|
{
|
||||||
"album-name" => a.name,
|
"album-name" => a.name,
|
||||||
|
"album-description" => a.description,
|
||||||
"link_to_show" => OrbitHelper.url_to_show(a.to_param),
|
"link_to_show" => OrbitHelper.url_to_show(a.to_param),
|
||||||
"thumb-src" => a.cover_path || "/assets/gallery/default.jpg"
|
"thumb-src" => a.cover_path || "/assets/gallery/default.jpg"
|
||||||
}
|
}
|
||||||
|
@ -19,6 +20,7 @@ class GalleriesController < ApplicationController
|
||||||
album = Album.find_by_param(params[:uid])
|
album = Album.find_by_param(params[:uid])
|
||||||
images = album.album_images.collect do |a|
|
images = album.album_images.collect do |a|
|
||||||
{
|
{
|
||||||
|
"image-description" => a.description,
|
||||||
"link_to_show" => "/" + I18n.locale.to_s + params[:url] + "/-" + a.id.to_s + "?method=theater",
|
"link_to_show" => "/" + I18n.locale.to_s + params[:url] + "/-" + a.id.to_s + "?method=theater",
|
||||||
"thumb-src" => a.file.thumb.url
|
"thumb-src" => a.file.thumb.url
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue