Show the additional photos in splash. Added fancybox gem for zoom when click on the additional photo. fix #777
9 lines
352 B
Ruby
9 lines
352 B
Ruby
class VenuePhoto < ActiveRecord::Base
|
|
belongs_to :venue
|
|
|
|
has_attached_file :photo,
|
|
styles: { thumb: '100x100>', large: '300x300>' }
|
|
validates_attachment_content_type :photo,
|
|
content_type: [/jpg/, /jpeg/, /png/, /gif/],
|
|
size: { in: 0..500.kilobytes }
|
|
end
|