9 lines
235 B
Ruby
9 lines
235 B
Ruby
# -*- encoding : utf-8 -*-
|
|
class GalleryContent < ActiveRecord::Base
|
|
has_many :gallery_images, -> {order("position")}
|
|
|
|
has_one :portlet, :as => :content, :dependent => :destroy
|
|
|
|
STYLES = []#[["Style 1",1], ["Style 2",2]]
|
|
end
|